Browse Source

Add quit frame binding

main
Christopher James Hayward 4 years ago
parent
commit
96ce8ce50d
  1. 4
      README.org
  2. 3
      init.el

4
README.org

@ -232,12 +232,14 @@ Again cherry picked from =Doom=, I want to continue utilizing the muscle memory
Quit emacs with =SPC q=. Quit emacs with =SPC q=.
+ Saving =q= + Saving =q=
+ Without =w= + Without =w=
+ Frame (daemon) =f=
#+begin_src emacs-lisp #+begin_src emacs-lisp
(dotfiles/leader (dotfiles/leader
"q" '(:ignore t :which-key "Quit") "q" '(:ignore t :which-key "Quit")
"qq" '(save-buffers-kill-emacs :which-key "Save") "qq" '(save-buffers-kill-emacs :which-key "Save")
"qw" '(kill-emacs :which-key "Now"))
"qw" '(kill-emacs :which-key "Now")
"qf" '(delete-frame :which-key "Frame"))
#+end_src #+end_src
Window management with =SPC w=. Window management with =SPC w=.

3
init.el

@ -97,7 +97,8 @@
(dotfiles/leader (dotfiles/leader
"q" '(:ignore t :which-key "Quit") "q" '(:ignore t :which-key "Quit")
"qq" '(save-buffers-kill-emacs :which-key "Save") "qq" '(save-buffers-kill-emacs :which-key "Save")
"qw" '(kill-emacs :which-key "Now"))
"qw" '(kill-emacs :which-key "Now")
"qf" '(delete-frame :which-key "Frame"))
(dotfiles/leader (dotfiles/leader
"w" '(:ignore t :which-key "Window") "w" '(:ignore t :which-key "Window")

Loading…
Cancel
Save