Skip to content

Commit

Permalink
Fix issue #516
Browse files Browse the repository at this point in the history
  • Loading branch information
manateelazycat committed Sep 24, 2024
1 parent b2345a2 commit 845e8a2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lsp-bridge.el
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 845e8a2

Please sign in to comment.