mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Fix disruptive evil-ex-hl-do-update-highlight errors caused by popwin
This commit is contained in:
@ -64,6 +64,10 @@
|
||||
(defadvice evil-window-vsplit (after evil-window-vsplit-jump activate)
|
||||
(evil-window-right 1))
|
||||
|
||||
;; Fix disruptive errors w/ hidden buffers caused by popwin
|
||||
(defadvice evil-ex-hl-do-update-highlight (around evil-ex-hidden-buffer-ignore-errors activate)
|
||||
(ignore-errors ad-do-it))
|
||||
|
||||
;; Restore vimmish ex-mode keymaps in isearch
|
||||
;; Hide keystroke display while isearch is active
|
||||
(add-hook! isearch-mode (setq echo-keystrokes 0))
|
||||
|
Reference in New Issue
Block a user