tAdjust default config for new search word highlighting - ledit - Text editor (… | |
git clone git://lumidify.org/ledit.git (fast, but not encrypted) | |
git clone https://lumidify.org/git/ledit.git (encrypted, but very slow) | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 91fe3763c8d446cf4039bd4bc169963c66d9ae85 | |
parent b7f7a516c405f90fb1294a6b7cf4463373294cb0 | |
Author: lumidify <[email protected]> | |
Date: Sat, 22 Oct 2022 11:57:59 +0200 | |
Adjust default config for new search word highlighting | |
Diffstat: | |
M keys_config.h | 4 ++-- | |
1 file changed, 2 insertions(+), 2 deletions(-) | |
--- | |
diff --git a/keys_config.h b/keys_config.h | |
t@@ -64,8 +64,8 @@ struct { | |
{"enter-commandedit", ":", 0, 0, NORMAL|VISUAL}, | |
{"enter-searchedit-backwards", "?", 0, 0, NORMAL}, | |
{"enter-searchedit-forwards", "/", 0, 0, NORMAL}, | |
- {"search-next", "n", 0, 0, NORMAL}, | |
- {"search-previous", "N", 0, 0, NORMAL}, | |
+ {"search-next", "n", 0, 0, NORMAL|VISUAL}, | |
+ {"search-previous", "N", 0, 0, NORMAL|VISUAL}, | |
{"undo", "u", 0, 0, NORMAL}, | |
{"redo", "U", 0, 0, NORMAL}, | |
{"repeat-command", ".", 0, 0, NORMAL}, /* FIXME: only allow after fini… |