From ab8080c03dc6093cc29684550ecdcaf8b90c61a2 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Mon, 19 Dec 2016 11:18:01 +0100 Subject: [PATCH] =?UTF-8?q?Add=20key=20bindings=20to=20git-gutter=E2=80=99?= =?UTF-8?q?=20previous/next=20hunk=20commands?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- init.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index df5b6a9..db41715 100644 --- a/init.el +++ b/init.el @@ -326,7 +326,9 @@ (global-git-gutter-mode t) :bind (:map gpolonkai/pers-map - ("gg" . git-gutter:update-all-windows))))) + ("gg" . git-gutter:update-all-windows) + ("gn" . git-gutter:next-hunk) + ("gp" . git-gutter:previous-hunk))))) ;; From gmane.emacs.orgmode ;; (http://article.gmane.org/gmane.emacs.orgmode/75222)