Emacs: Change keybindings for git-gutter.

This commit is contained in:
tastytea 2020-04-24 15:09:31 +02:00
parent 07c531324a
commit 9dfcb67310
1 changed files with 2 additions and 3 deletions

View File

@ -72,9 +72,8 @@
;; Show VC status in fringe.
(use-package git-gutter
:diminish git-gutter-mode
:bind (("C-c G" . git-gutter-mode)
("C-c M-G" . git-gutter:popup-hunk)) ; Popup diff hunk.
:hook (find-file . git-gutter-mode)) ; Maybe slows down opening?
:bind ("C-c G" . git-gutter:popup-hunk) ; Popup diff hunk.
:hook (find-file . git-gutter-mode)) ; Maybe slows down opening?
(provide 'programming/git)
;;; git.el ends here