aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2020-08-29 13:39:50 +0200
committerMarc André Tanner <mat@brain-dump.org>2020-08-29 13:52:30 +0200
commit08d2e6964eee74a156e6ca4996e90f5e0a2d676f (patch)
tree86665d0dc0de61447139f57b80428a29babbe2eb /config.def.h
parent6f0f448ef22a324cefce9e6ab7c89cae7d00a034 (diff)
downloadvis-08d2e6964eee74a156e6ca4996e90f5e0a2d676f.tar.gz
vis-08d2e6964eee74a156e6ca4996e90f5e0a2d676f.tar.xz
vis: implement C-n in normal mode with a mapping to viw
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h
index 3717404..6a4555e 100644
--- a/config.def.h
+++ b/config.def.h
@@ -184,7 +184,7 @@ static const KeyBinding bindings_normal[] = {
{ "<C-j>", ACTION(SELECTIONS_NEW_LINE_BELOW) },
{ "<C-k>", ACTION(SELECTIONS_NEW_LINE_ABOVE) },
{ "<C-l>", ACTION(SELECTIONS_REMOVE_COLUMN_EXCEPT) },
- { "<C-n>", ACTION(SELECTIONS_MATCH_WORD) },
+ { "<C-n>", ALIAS("viw") },
{ "<C-p>", ACTION(SELECTIONS_REMOVE_LAST) },
{ "<C-r>", ACTION(REDO) },
{ "<C-u>", ACTION(SELECTIONS_PREV) },