This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/tools/rust-analyzer/crates/rust-analyzer/src Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1440,7 +1440,7 @@ impl Config {
14401440 limit : self . completion_limit ( source_root) . to_owned ( ) ,
14411441 enable_term_search : self . completion_termSearch_enable ( source_root) . to_owned ( ) ,
14421442 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 ( ) {
14441444 CompletionFieldsToResolve :: empty ( )
14451445 } else {
14461446 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 {
4141 } ) ) ,
4242 hover_provider : Some ( HoverProviderCapability :: Simple ( true ) ) ,
4343 completion_provider : Some ( CompletionOptions {
44- resolve_provider : if config. client_is_helix ( ) || config . client_is_neovim ( ) {
44+ resolve_provider : if config. client_is_neovim ( ) {
4545 config. completion_item_edit_resolve ( ) . then_some ( true )
4646 } else {
4747 Some ( config. caps ( ) . completions_resolve_provider ( ) )
You can’t perform that action at this time.
0 commit comments