fix(default): restore accidentally gated keybinds
These were accidentally gated as part of6949451
(#7002). Amend:6949451b00
Close: #7745 Co-authored-by: raszi <raszi@users.noreply.github.com>
This commit is contained in:
parent
cb6e3f0e89
commit
76b452278f
1 changed files with 7 additions and 7 deletions
|
@ -405,9 +405,12 @@
|
||||||
|
|
||||||
;;; <leader> c --- code
|
;;; <leader> c --- code
|
||||||
(:prefix-map ("c" . "code")
|
(:prefix-map ("c" . "code")
|
||||||
(:when (and (modulep! :tools lsp) (not (modulep! :tools lsp +eglot)))
|
(:when (modulep! :tools lsp -eglot)
|
||||||
:desc "LSP Execute code action" "a" #'lsp-execute-code-action
|
:desc "LSP Execute code action" "a" #'lsp-execute-code-action
|
||||||
:desc "LSP Organize imports" "o" #'lsp-organize-imports
|
:desc "LSP Organize imports" "o" #'lsp-organize-imports
|
||||||
|
:desc "LSP" "l" #'+default/lsp-command-map
|
||||||
|
:desc "LSP Rename" "r" #'lsp-rename
|
||||||
|
:desc "Symbols" "S" #'lsp-treemacs-symbols
|
||||||
(:when (modulep! :completion ivy)
|
(:when (modulep! :completion ivy)
|
||||||
:desc "Jump to symbol in current workspace" "j" #'lsp-ivy-workspace-symbol
|
:desc "Jump to symbol in current workspace" "j" #'lsp-ivy-workspace-symbol
|
||||||
:desc "Jump to symbol in any workspace" "J" #'lsp-ivy-global-workspace-symbol)
|
:desc "Jump to symbol in any workspace" "J" #'lsp-ivy-global-workspace-symbol)
|
||||||
|
@ -421,10 +424,7 @@
|
||||||
:desc "Errors list" "X" #'lsp-treemacs-errors-list
|
:desc "Errors list" "X" #'lsp-treemacs-errors-list
|
||||||
:desc "Incoming call hierarchy" "y" #'lsp-treemacs-call-hierarchy
|
:desc "Incoming call hierarchy" "y" #'lsp-treemacs-call-hierarchy
|
||||||
:desc "Outgoing call hierarchy" "Y" (cmd!! #'lsp-treemacs-call-hierarchy t)
|
:desc "Outgoing call hierarchy" "Y" (cmd!! #'lsp-treemacs-call-hierarchy t)
|
||||||
:desc "References tree" "R" (cmd!! #'lsp-treemacs-references t)
|
:desc "References tree" "R" (cmd!! #'lsp-treemacs-references t)))
|
||||||
:desc "Symbols" "S" #'lsp-treemacs-symbols
|
|
||||||
:desc "LSP" "l" #'+default/lsp-command-map
|
|
||||||
:desc "LSP Rename" "r" #'lsp-rename))
|
|
||||||
(:when (modulep! :tools lsp +eglot)
|
(:when (modulep! :tools lsp +eglot)
|
||||||
:desc "LSP Execute code action" "a" #'eglot-code-actions
|
:desc "LSP Execute code action" "a" #'eglot-code-actions
|
||||||
:desc "LSP Rename" "r" #'eglot-rename
|
:desc "LSP Rename" "r" #'eglot-rename
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue