starlark-rust icon indicating copy to clipboard operation
starlark-rust copied to clipboard

extension completions stay for too long

Open cjhopman opened this issue 1 year ago • 0 comments

if you type some_list.app then we will suggest completing to append(object). That's good. But when you keep typing and type out "some_list.append(obj" we still have that suggested completion and then when you type "some_list.append(obj)" the suggestion is still there, and then when you hit enter you accept the suggestion and we replace your code with "some_list.append". This is bad.

cjhopman avatar Aug 29 '23 22:08 cjhopman