mirror of
https://github.com/correl/dotfiles.git
synced 2024-12-18 03:00:11 +00:00
[emacs] Disable git-gutter when running ediff
This commit is contained in:
parent
e4da12baf0
commit
8303454123
1 changed files with 9 additions and 0 deletions
|
@ -29,6 +29,15 @@
|
||||||
;; Git Gutter
|
;; Git Gutter
|
||||||
(global-git-gutter-mode t)
|
(global-git-gutter-mode t)
|
||||||
|
|
||||||
|
(defadvice ediff-make-temp-file (before make-temp-file-suspend-ll
|
||||||
|
activate compile preactivate)
|
||||||
|
"Disable git-gutter when running ediff"
|
||||||
|
(global-git-gutter-mode 0))
|
||||||
|
|
||||||
|
(add-hook 'ediff-cleanup-hook
|
||||||
|
'(lambda ()
|
||||||
|
(global-git-gutter-mode t)))
|
||||||
|
|
||||||
;; Fixes an issue with ECB
|
;; Fixes an issue with ECB
|
||||||
;; (setq stack-trace-on-error t)
|
;; (setq stack-trace-on-error t)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue