Browse Source

Cleanup bindings

main
parent
commit
862f7b7020
  1. 6
      README.org
  2. 4
      init.el

6
README.org

@ -207,7 +207,7 @@ Quit emacs with =SPC q=.
Window management with =SPC w=. Window management with =SPC w=.
+ Swap with =w= + Swap with =w=
+ Kill with =k=
+ Close with =c=
+ Delete with =d= + Delete with =d=
+ Motions with =h,j,k,l= + Motions with =h,j,k,l=
+ Split with =s + <MOTION>= + Split with =s + <MOTION>=
@ -216,8 +216,8 @@ Window management with =SPC w=.
(dotfiles/leader (dotfiles/leader
"w" '(:ignore t :which-key "Window") "w" '(:ignore t :which-key "Window")
"ww" '(window-swap-states :which-key "Swap") "ww" '(window-swap-states :which-key "Swap")
"wk" '(kill-buffer-and-window :which-key "Kill")
"wd" '(delete-window :which-key "Delete")
"wd" '(kill-buffer-and-window :which-key "Delete")
"wc" '(delete-window :which-key "Close")
"wh" '(windmove-left :which-key "Left") "wh" '(windmove-left :which-key "Left")
"wj" '(windmove-down :which-key "Down") "wj" '(windmove-down :which-key "Down")
"wk" '(windmove-up :which-key "Up") "wk" '(windmove-up :which-key "Up")

4
init.el

@ -87,8 +87,8 @@
(dotfiles/leader (dotfiles/leader
"w" '(:ignore t :which-key "Window") "w" '(:ignore t :which-key "Window")
"ww" '(window-swap-states :which-key "Swap") "ww" '(window-swap-states :which-key "Swap")
"wk" '(kill-buffer-and-window :which-key "Kill")
"wd" '(delete-window :which-key "Delete")
"wd" '(kill-buffer-and-window :which-key "Delete")
"wc" '(delete-window :which-key "Close")
"wh" '(windmove-left :which-key "Left") "wh" '(windmove-left :which-key "Left")
"wj" '(windmove-down :which-key "Down") "wj" '(windmove-down :which-key "Down")
"wk" '(windmove-up :which-key "Up") "wk" '(windmove-up :which-key "Up")

Loading…
Cancel
Save