facebook / starlark-rust

A Rust implementation of the Starlark language
Apache License 2.0
672 stars 53 forks source link

extension completions stay for too long #86

Open cjhopman opened 11 months ago

cjhopman commented 11 months ago

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.