diff --git a/README.org b/README.org index 1f685dc..71e37d8 100644 --- a/README.org +++ b/README.org @@ -232,12 +232,14 @@ Again cherry picked from =Doom=, I want to continue utilizing the muscle memory Quit emacs with =SPC q=. + Saving =q= + Without =w= ++ Frame (daemon) =f= #+begin_src emacs-lisp (dotfiles/leader "q" '(:ignore t :which-key "Quit") "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 Window management with =SPC w=. diff --git a/init.el b/init.el index 64adc62..5063e6d 100644 --- a/init.el +++ b/init.el @@ -97,7 +97,8 @@ (dotfiles/leader "q" '(:ignore t :which-key "Quit") "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 "w" '(:ignore t :which-key "Window")