Browse Source

Fix binding

main
parent
commit
1d079162dc
  1. 4
      modules/editor.org

4
modules/editor.org

@ -273,13 +273,13 @@ Yet another hallmark feature of Emacs: *Magit*[fn:17] with the *darling* name, t
Place keybindings for *magit*[fn:17] behind =SPC g=. Place keybindings for *magit*[fn:17] behind =SPC g=.
+ Clone with =c= + Clone with =c=
+ Status with =g=
+ Status with =s=
#+begin_src emacs-lisp #+begin_src emacs-lisp
(dotfiles/leader (dotfiles/leader
"g" '(:ignore t :which-key "Magit") "g" '(:ignore t :which-key "Magit")
"gc" '(magit-clone :which-key "Clone") "gc" '(magit-clone :which-key "Clone")
"gg" '(magit-status :which-key "Magit"))
"gs" '(magit-status :which-key "Status"))
#+end_src #+end_src
** GitHub integration ** GitHub integration

Loading…
Cancel
Save