diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2016-01-17 13:57:37 +0100 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2016-01-17 13:57:37 +0100 |
| commit | 74394f7e68098a60672432f20449a7e48d8257be (patch) | |
| tree | 3ecedb49220c8f07a5ab23e75f18289f6fb9e0f0 | |
| parent | 5aaf52f3617504d7211d272af86fd49f0e0d0a4e (diff) | |
| download | vis-74394f7e68098a60672432f20449a7e48d8257be.tar.gz vis-74394f7e68098a60672432f20449a7e48d8257be.tar.xz | |
vis: let ~ have an immediate effect in normal mode
Similar to vim with the notildeop setting.
| -rw-r--r-- | config.def.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index a40924a..a51c875 100644 --- a/config.def.h +++ b/config.def.h @@ -231,6 +231,7 @@ static const KeyBinding bindings_normal[] = { { "P", ACTION(PUT_BEFORE) }, { "gp", ACTION(PUT_AFTER_END) }, { "gP", ACTION(PUT_BEFORE_END) }, + { "~", ALIAS("<vis-operator-case-swap>l") }, { 0 /* empty last element, array terminator */ }, }; |
