diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2020-08-29 13:39:50 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2020-08-29 13:52:30 +0200 |
| commit | 08d2e6964eee74a156e6ca4996e90f5e0a2d676f (patch) | |
| tree | 86665d0dc0de61447139f57b80428a29babbe2eb /config.def.h | |
| parent | 6f0f448ef22a324cefce9e6ab7c89cae7d00a034 (diff) | |
| download | vis-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.h | 2 |
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) }, |
