Hush now, quiet now, undo-tree error messages
This commit is contained in:
parent
1da1ff4583
commit
f09fa909d6
1 changed files with 7 additions and 1 deletions
|
@ -128,7 +128,13 @@
|
||||||
(defadvice evil-window-split (after evil-window-split-jump activate)
|
(defadvice evil-window-split (after evil-window-split-jump activate)
|
||||||
(evil-window-down 1))
|
(evil-window-down 1))
|
||||||
(defadvice evil-window-vsplit (after evil-window-vsplit-jump activate)
|
(defadvice evil-window-vsplit (after evil-window-vsplit-jump activate)
|
||||||
(evil-window-right 1)))
|
(evil-window-right 1))
|
||||||
|
|
||||||
|
;; Shut up undo-tree's constant complaining
|
||||||
|
(defadvice undo-tree-load-history-hook (around undo-tree-load-history-shut-up activate)
|
||||||
|
(shut-up ad-do-it))
|
||||||
|
(defadvice undo-tree-save-history-hook (around undo-tree-save-history-shut-up activate)
|
||||||
|
(shut-up ad-do-it))))
|
||||||
|
|
||||||
(progn ; extensions
|
(progn ; extensions
|
||||||
(defun evil-visual-line-state-p ()
|
(defun evil-visual-line-state-p ()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue