diff options
author | Marius Peter <marius.peter@tutanota.com> | 2021-06-07 19:57:04 -0700 |
---|---|---|
committer | Marius Peter <marius.peter@tutanota.com> | 2021-06-07 19:57:04 -0700 |
commit | 535e05da82a2f89aa13c0b328e85e39edd5f5e6a (patch) | |
tree | 71893c6555d5b74091ae61e36028ed05f585a25a | |
parent | 2a2385e21288d77ed012397ef37e2a8c0021560d (diff) |
Purge cua, ah
-rw-r--r-- | smart-documents.org | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/smart-documents.org b/smart-documents.org index ba2a775..0af265f 100644 --- a/smart-documents.org +++ b/smart-documents.org @@ -42,7 +42,7 @@ Customizing Emacs goes far, far beyond rewriting sections of this document---feel free to experiment and discover. Here are three commands that will help you understand all the symbols in this file, if you are browsing this paper within Emacs itself: -# bahaha + - ~C-h f~ :: describe function - ~C-h v~ :: describe variable - ~C-h k~ :: describe key @@ -279,7 +279,7 @@ User Access. This is a term coined by IBM which has influenced user navigation cues on all modern desktop OSes. From IBM's CUA, we get the =Ctrl-c= and =Ctrl-v= keyboard shortcuts.] -#+BEGIN_SRC emacs-lisp :tangle yes +#+BEGIN_SRC emacs-lisp :tangle no (cua-mode) #+END_SRC @@ -377,6 +377,14 @@ The following bindings lead to more natural window & frame exit behaviors. (global-set-key (kbd "C-q") 'sd-delete-frame-or-kill-emacs) #+END_SRC +*** Disable =C-z= if using a graphical interface + +#+BEGIN_SRC emacs-lisp :tangle yes +(global-unset-key (kbd "C-z")) + +(global-set-key (kbd "C-z C-z") 'suspend-frame) +#+END_SRC + ** Text display *** Zoom |