diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2017-02-08 22:55:10 +0100 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2017-02-08 22:57:15 +0100 |
| commit | 57fadb3de52b3ddcf0a8a4343cc9d2234d3ffc31 (patch) | |
| tree | 91f21caa9e4a927e70d3005d0692bdf7b1bba26a /config.def.h | |
| parent | 57363f6ea8bafac509e11e6c1e42f9f02999ce2f (diff) | |
| download | vis-57fadb3de52b3ddcf0a8a4343cc9d2234d3ffc31.tar.gz vis-57fadb3de52b3ddcf0a8a4343cc9d2234d3ffc31.tar.xz | |
vis: improve <C-d> and <C-t> implementation in insert mode
Fix #487
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config.def.h b/config.def.h index 04643d1..1849975 100644 --- a/config.def.h +++ b/config.def.h @@ -324,14 +324,14 @@ static const KeyBinding bindings_readline[] = { }; static const KeyBinding bindings_insert[] = { - { "<C-d>", ALIAS("<Escape><<i") }, + { "<C-d>", ALIAS("<vis-operator-shift-left><vis-operator-shift-left>") }, { "<C-i>", ALIAS("<Tab>") }, { "<C-j>", ALIAS("<Enter>") }, { "<C-n>", ACTION(COMPLETE_WORD) }, { "<C-x><C-f>", ACTION(COMPLETE_FILENAME) }, { "<C-m>", ALIAS("<Enter>") }, { "<C-r>", ACTION(INSERT_REGISTER) }, - { "<C-t>", ALIAS("<Escape>>>i") }, + { "<C-t>", ALIAS("<vis-operator-shift-right><vis-operator-shift-right>") }, { "<C-x><C-e>", ACTION(WINDOW_SLIDE_UP) }, { "<C-x><C-y>", ACTION(WINDOW_SLIDE_DOWN) }, { "<Enter>", ACTION(INSERT_NEWLINE) }, |
