diff options
author | David Morgan <djm_uk@protonmail.com> | 2024-09-20 11:13:12 +0000 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2024-09-20 11:13:12 +0000 |
commit | fabd969791e4a6709be1cc0833eaf03a6ee24bb6 (patch) | |
tree | 780877043448959c02c262c3efdcc8eba42cd1a4 /.emacs.d | |
parent | f9802defb6d3193b4249139ebd972e0f59966ff1 (diff) | |
download | dotfiles-fabd969791e4a6709be1cc0833eaf03a6ee24bb6.tar.gz |
Add bindings for git-related
Diffstat (limited to '.emacs.d')
-rw-r--r-- | .emacs.d/lisp/init-git.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.emacs.d/lisp/init-git.el b/.emacs.d/lisp/init-git.el index 1d7183e..759c36c 100644 --- a/.emacs.d/lisp/init-git.el +++ b/.emacs.d/lisp/init-git.el @@ -339,7 +339,9 @@ GitHub/Bitbucket/GitLab/... The URL will be added to the kill ring. If ("C-c g b" . git-link-branch)) (use-feature git-related - :defer 10) + :bind + ("C-c g #" . git-related-find-file) + ("C-c g ~" . git-related-update)) (provide 'init-git) ;;; init-git.el ends here |