From 845e8a2e4b6a0161708890de541c9b027c9cef13 Mon Sep 17 00:00:00 2001 From: Andy Stewart Date: Tue, 24 Sep 2024 23:54:08 +0800 Subject: [PATCH] Fix issue #516 --- lsp-bridge.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lsp-bridge.el b/lsp-bridge.el index 0e73640da4..48dd486a70 100644 --- a/lsp-bridge.el +++ b/lsp-bridge.el @@ -2669,7 +2669,10 @@ We need exclude `markdown-code-fontification:*' buffer in `lsp-bridge-monitor-be (with-eval-after-load 'evil (evil-add-command-properties #'lsp-bridge-find-def :jump t) (evil-add-command-properties #'lsp-bridge-find-references :jump t) - (evil-add-command-properties #'lsp-bridge-find-impl :jump t)) + (evil-add-command-properties #'lsp-bridge-find-impl :jump t) + + ;; Fix issue #516 + (add-hook 'acm-mode-hook #'evil-normalize-keymaps)) (defun lsp-bridge--rename-file-advisor (orig-fun &optional arg &rest args) (let* ((current-file-name (buffer-file-name))