You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to start using helix as my default editor when programming with Rust but unfortunately some of the auto completion features are not working as expected.
Going by the following rust-analyzer manual https://rust-analyzer.github.io/manual.html#magic-completions the rust-analyzer should be able to autocomplete functions with (), generic types with <> and allow for postfix completions i.e expr.match → match expr {}.
Executing hx --health rust the setup seems fine.
Configured language server: rust-analyzer
Binary for language server: /home/itaseski/.local/bin/rust-analyzer
Configured debug adapter: lldb-vscode
Binary for debug adapter: Not found in $PATH
Highlight queries: ✓
Textobject queries: ✓
Indent queries: ✓
Is this a missing feature, bug or issue with my own environment? If needed, I'm happy to provide a fix with some initial guidance.
Environment:
Linux Debian "bullseye" 11
Helix Editor 22.08.1
rust-analyzer latest
Regards, Ivica.
The text was updated successfully, but these errors were encountered:
Yep, those are snippets as well. Snippets allow you to specify where exactly the cursor should move to. Non-snippet completion items are basically a chunk of text to insert and then the cursor goes at the end.
Hello,
I'm trying to start using helix as my default editor when programming with Rust but unfortunately some of the auto completion features are not working as expected.
Going by the following rust-analyzer manual https://rust-analyzer.github.io/manual.html#magic-completions the rust-analyzer should be able to autocomplete functions with
()
, generic types with<>
and allow for postfix completions i.eexpr.match → match expr {}
.Executing
hx --health rust
the setup seems fine.Is this a missing feature, bug or issue with my own environment? If needed, I'm happy to provide a fix with some initial guidance.
Environment:
Linux Debian "bullseye" 11
Helix Editor 22.08.1
rust-analyzer latest
Regards, Ivica.
The text was updated successfully, but these errors were encountered: