diff options
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | config.def.h | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -197,7 +197,7 @@ Operators can be forced to work line wise by specifying `V`. CTRL-J create a new cursor on the line below CTRL-P remove least recently added cursor CTRL-N select word the cursor is currently over, switch to visual mode - CTRL-A try to align all cursor on the same column + TAB try to align all cursor on the same column ESC if a selection is active, clear it. Otherwise dispose all but the primary cursor. diff --git a/config.def.h b/config.def.h index 4902415..faab0e8 100644 --- a/config.def.h +++ b/config.def.h @@ -172,7 +172,7 @@ static const KeyBinding bindings_normal[] = { { "<Delete>", ALIAS("x") }, { "<C-k>", ACTION(CURSORS_NEW_LINE_ABOVE) }, { "<C-j>", ACTION(CURSORS_NEW_LINE_BELOW) }, - { "<C-a>", ACTION(CURSORS_ALIGN) }, + { "<Tab>", ACTION(CURSORS_ALIGN) }, { "<C-n>", ACTION(CURSOR_SELECT_WORD) }, { "<C-p>", ACTION(CURSORS_REMOVE_LAST) }, { "<C-w>n", ALIAS(":open<Enter>") }, |
