This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree 2 files changed +2
-2
lines changed
src/tools/rust-analyzer/crates/rust-analyzer/src 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1440,7 +1440,7 @@ impl Config {
1440
1440
limit : self . completion_limit ( source_root) . to_owned ( ) ,
1441
1441
enable_term_search : self . completion_termSearch_enable ( source_root) . to_owned ( ) ,
1442
1442
term_search_fuel : self . completion_termSearch_fuel ( source_root) . to_owned ( ) as u64 ,
1443
- fields_to_resolve : if self . client_is_helix ( ) || self . client_is_neovim ( ) {
1443
+ fields_to_resolve : if self . client_is_neovim ( ) {
1444
1444
CompletionFieldsToResolve :: empty ( )
1445
1445
} else {
1446
1446
CompletionFieldsToResolve :: from_client_capabilities ( & client_capability_fields)
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ pub fn server_capabilities(config: &Config) -> ServerCapabilities {
41
41
} ) ) ,
42
42
hover_provider : Some ( HoverProviderCapability :: Simple ( true ) ) ,
43
43
completion_provider : Some ( CompletionOptions {
44
- resolve_provider : if config. client_is_helix ( ) || config . client_is_neovim ( ) {
44
+ resolve_provider : if config. client_is_neovim ( ) {
45
45
config. completion_item_edit_resolve ( ) . then_some ( true )
46
46
} else {
47
47
Some ( config. caps ( ) . completions_resolve_provider ( ) )
You can’t perform that action at this time.
0 commit comments