-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rename editor.action.triggerParameterHints
and editor.action.rename
command capabilities
#17644
Comments
Veykril
added
A-lsp
LSP conformance issues and missing features
A-config
configuration
labels
Jul 20, 2024
bors
added a commit
that referenced
this issue
Jul 22, 2024
Rename rust-analyzer commands The commands `editor.action.triggerParameterHints` and `editor.action.rename` are now renamed to `rust-analyzer.triggerParameterHints` and `rust-analyzer.rename` This change helps make it clear that these commands are specific to rust-analyzer and not part of the default set of commands provided by VSCode. Fixes: #17644 Note: This seems like it will be a breaking change for any RA client that previously reacted to `editor.action.triggerParameterHints` - naive search: https://github.com/search?q=editor.action.triggerParameterHints+AND+%28NOT+is%3Afork%29+rust-analyzer&type=code
Veykril
pushed a commit
to Veykril/rust-analyzer
that referenced
this issue
Jul 25, 2024
The commands `editor.action.triggerParameterHints` and `editor.action.rename` are now renamed to `rust-analyzer.triggerParameterHints` and `rust-analyzer.rename` This change helps make it clear that these commands are specific to rust-analyzer and not part of the default set of commands provided by VSCode. Fixes: rust-lang#17644
lnicola
pushed a commit
to lnicola/rust
that referenced
this issue
Jul 28, 2024
The commands `editor.action.triggerParameterHints` and `editor.action.rename` are now renamed to `rust-analyzer.triggerParameterHints` and `rust-analyzer.rename` This change helps make it clear that these commands are specific to rust-analyzer and not part of the default set of commands provided by VSCode. Fixes: rust-lang/rust-analyzer#17644
lnicola
pushed a commit
to lnicola/rust
that referenced
this issue
Jul 28, 2024
Rename rust-analyzer commands The commands `editor.action.triggerParameterHints` and `editor.action.rename` are now renamed to `rust-analyzer.triggerParameterHints` and `rust-analyzer.rename` This change helps make it clear that these commands are specific to rust-analyzer and not part of the default set of commands provided by VSCode. Fixes: rust-lang/rust-analyzer#17644 Note: This seems like it will be a breaking change for any RA client that previously reacted to `editor.action.triggerParameterHints` - naive search: https://github.com/search?q=editor.action.triggerParameterHints+AND+%28NOT+is%3Afork%29+rust-analyzer&type=code
nemethf
added a commit
to nemethf/eglot-x
that referenced
this issue
Jul 30, 2024
The motivation is to trigger a rename after extract variable assist is applied: rust-lang/rust-analyzer#17587 The implementation might need to be updated later: rust-lang/rust-analyzer#17644 * eglot-x.el (eglot-x-client-commands): New defcustom. (eglot-client-capabilities): Set experimental/commands based on the defcustom. (eglot-x--apply-text-edits): Sync with upstream version of eglot--apply-text-edits, and remove heuristic to detect a snippet, which is no longer needed. (eglot-x-execute-command): New defun. Handle the client command "rust-analyzer.rename" locally. (elgot-execute): New cl-defmethod. Extend the default implementation by calling eglot-x-execute-command for commands.
RalfJung
pushed a commit
to RalfJung/rust
that referenced
this issue
Aug 1, 2024
The commands `editor.action.triggerParameterHints` and `editor.action.rename` are now renamed to `rust-analyzer.triggerParameterHints` and `rust-analyzer.rename` This change helps make it clear that these commands are specific to rust-analyzer and not part of the default set of commands provided by VSCode. Fixes: rust-lang/rust-analyzer#17644
RalfJung
pushed a commit
to RalfJung/rust
that referenced
this issue
Aug 1, 2024
Rename rust-analyzer commands The commands `editor.action.triggerParameterHints` and `editor.action.rename` are now renamed to `rust-analyzer.triggerParameterHints` and `rust-analyzer.rename` This change helps make it clear that these commands are specific to rust-analyzer and not part of the default set of commands provided by VSCode. Fixes: rust-lang/rust-analyzer#17644 Note: This seems like it will be a breaking change for any RA client that previously reacted to `editor.action.triggerParameterHints` - naive search: https://github.com/search?q=editor.action.triggerParameterHints+AND+%28NOT+is%3Afork%29+rust-analyzer&type=code
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Originally posted by @Veykril in #17587 (comment)
The text was updated successfully, but these errors were encountered: