Closing my single, full-screen frame ain't helpful

But closing a window is.
This commit is contained in:
Howard Abrams 2022-03-25 15:19:46 -07:00
parent 6ddd2f6c95
commit 4a7771b48a

View file

@ -324,6 +324,10 @@ Why would I ever quit Emacs with a simple keybinding? Lets override it:
#+BEGIN_SRC emacs-lisp
(global-set-key (kbd "s-q") 'bury-buffer)
#+END_SRC
Oh, and lets not close the frame, but instead, the window:
#+BEGIN_SRC emacs-lisp
(global-set-key (kbd "s-w") 'delete-window)
#+END_SRC
*** Undo
I mean, I /always/ use ~C-/~ for [[help:undo][undo]] (and ~C-?~ for [[help:undo-redo][redo]]), but since Im on the Mac quite a bit, I want to cover my bases.