Use lsp-rename instead of iedit in lsp-mode.

This commit is contained in:
tastytea 2021-09-29 12:56:54 +02:00
parent c966d6a28c
commit d0bd9f3253
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 2 additions and 1 deletions

View File

@ -94,7 +94,8 @@
:bind (:map lsp-ui-mode-map
("M-." . lsp-ui-peek-find-definitions)
("C-M-." . lsp-ui-peek-find-references)
("C-M-," . lsp-ui-peek-find-implementation))
("C-M-," . lsp-ui-peek-find-implementation)
("C-;" . lsp-rename)) ; lsp-iedit-highlights ?
:hook ((lsp-mode . lsp-ui-mode)
(lsp-ui-peek-mode . my/lsp-ws-toggle)))