Chris Hopman
Chris Hopman
When there's some use of a symbol `SomeTrait` that's from some other module and there's a similar symbol in scope (like `HasSomeTrait`), the option to add a use for `SomeTrait`...
For example: we pop up a bunch of suggestions after typing record( we do it quickly enough that when the user hits enter to start defining the record fields, they...
Often you want to introduce a newline in a single line (#-style) comment where the newline continues the comment. rust analyzer supports this via a setting ("Continue Comments On Newline")...
For this code: ``` def bad(): def foo(): some_ref() ``` You can't jump-to-def on some_ref(). We do have a red squiggle for the bad function, so that's good. Maybe we...
IDE command is "Trigger Parameter Hints", depends on editorHasSignatureHelperProvider. Attached simple example for rust code
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...
The starlark language server isn't super reliable and I need to restart it at times. Needing to restart the entire extension host to get that is kinda inconvenient. rust-analyzer has...
There's an interesting issue in bazel here: https://github.com/bazelbuild/bazel/discussions/21378. There's a repro for a bad perf case of their merkle tree cache here: https://github.com/DavidANeil/repro-bazel-nested-set/tree/master. That cache seems like it likely does...