diff options
-rw-r--r-- | README.md | 13 | ||||
-rw-r--r-- | extras/dev.el | 3 |
2 files changed, 14 insertions, 2 deletions
@@ -215,6 +215,10 @@ See the [issue tracker](https://todo.sr.ht/~ashton314/emacs-bedrock) on SourceHu ## Changelog + - Development + + Change magit keybinding to standard `C-x g`; drop non-standard ones. (Thanks Vincent Conus!) + - 1.2.0 2023-09-21 @@ -265,6 +269,15 @@ See the [issue tracker](https://todo.sr.ht/~ashton314/emacs-bedrock) on SourceHu ## Authors +Creator and maintainer: + - Ashton Wiersdorf https://lambdaland.org +Contributors: + + - George Kettleborough + - Enzo Do Rosario + - Ed Singleton + - Vincent Conus + [^1]: https://karthinks.com/software/avy-can-do-anything/ diff --git a/extras/dev.el b/extras/dev.el index 40dd6cf..87fa7a2 100644 --- a/extras/dev.el +++ b/extras/dev.el @@ -54,8 +54,7 @@ ;; Magit: best Git client to ever exist (use-package magit :ensure t - :bind (("s-g" . magit-status) - ("C-c g" . magit-status))) + :bind (("C-x g" . magit-status))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; |