summary refs log tree commit diff
diff options
context:
space:
mode:
authornoa@gaiwan.org2024-06-23 17:51:30 +0000
committernoa@gaiwan.org2024-06-23 17:51:30 +0000
commit9b45ebd98e2026045fa8ab3dfe8ac143414b4032 (patch)
tree3096bd3e0968a4205251e9d9a314caf51047266d
parent6c28ba2313a15b61351fdf0a676adcecb4031189 (diff)
Re-enable vertical navigation keys
-rw-r--r--config.org9
1 files changed, 0 insertions, 9 deletions
diff --git a/config.org b/config.org
index a47ce4d..3d806a6 100644
--- a/config.org
+++ b/config.org
@@ -1449,15 +1449,6 @@ If you want to move the cursor to a subsequent instance of the search term, you
 
 Semi-modes seem hard to implement in emacs, although in a lot of ways they are already here.  I am not a fan of modes in the vi-sense at all, and isearch in emacs is a mode like this.  That is, keybindings work differently when isearching, and you have to press C-g or RET to go back to the normal editing flow.
 
-For now, i will try unbinding the vertical navigation keys to see if i can train myself to use search more.  This will likely lead to me wanting to improve some of the search functionality.
-
-#+begin_src elisp
-  (global-set-key (kbd "<up>") nil)
-  (global-set-key (kbd "<down>") nil)
-  (global-set-key (kbd "C-n") nil)
-  (global-set-key (kbd "C-p") nil)
-#+end_src
-
 * Undo
 
 Undo is on C-/ and redo is on C-S-/.  It's not standard, but these bindings are easier to remember.  And with this setting, it behaves for the most part like undo in other programs, which isn't as good as i'd really want, but is something i can reason about much more easily than the default undo.