diff options
| author | Matthew Fidler <matthew.fidler@gmail.com> | 2024-08-28 21:02:15 -0500 |
|---|---|---|
| committer | Matthew Fidler <matthew.fidler@gmail.com> | 2024-08-28 21:02:15 -0500 |
| commit | 97d856bbf081de1d387ec646d06aac7bcce3f675 (patch) | |
| tree | 9bc0f996e17245cb003120e588691f6bc59cce19 | |
| parent | ddad134b8dd151dd84b60153b676021fab8b7540 (diff) | |
Add note based on #526externals/ergoemacs-mode
| -rw-r--r-- | Readme.md | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -59,6 +59,16 @@ term-mode instead of `org-capture`, you can define the key as follows: (define-key ergoemacs-user-keymap (kbd "C-p") 'undefined) ``` + This will unbind the printing interface. + +If you want to truly drop the `ergoemacs-mode` key and use `emacs`'s default you can also remove them from the `ergoemacs-mode` by: + + ```lisp + (define-key ergoemacs-override-keymap (kbd "C-p") nil) + ``` + + This will have `C-p` be previous line, like it is in emacs. + ## How `ergoemacs-mode' works the "magic" `ergoemacs-mode` binds all of its keys in the |
