aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2018-04-28 11:34:26 +0200
committerMarc André Tanner <mat@brain-dump.org>2018-05-16 13:24:01 +0200
commite34b829bbb284972dd391ae00b22274e47d55f16 (patch)
tree9d6092a1f6a036d0fc87bfc1dc6e7050e3c5b6fb /config.def.h
parent55ea139a5bee4d3dd503ccc255865fc1c6c3fabe (diff)
downloadvis-e34b829bbb284972dd391ae00b22274e47d55f16.tar.gz
vis-e34b829bbb284972dd391ae00b22274e47d55f16.tar.xz
vis: remove v and V in operator pending mode
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/config.def.h b/config.def.h
index 03c910c..9e055df 100644
--- a/config.def.h
+++ b/config.def.h
@@ -188,12 +188,6 @@ static const KeyBinding bindings_operators[] = {
{ 0 /* empty last element, array terminator */ },
};
-static const KeyBinding bindings_operator_options[] = {
- { "v", ACTION(MOTION_CHARWISE) },
- { "V", ACTION(MOTION_LINEWISE) },
- { 0 /* empty last element, array terminator */ },
-};
-
static const KeyBinding bindings_normal[] = {
{ "a", ACTION(APPEND_CHAR_NEXT) },
{ "A", ACTION(APPEND_LINE_END) },
@@ -347,7 +341,6 @@ static const KeyBinding bindings_replace[] = {
* one array the first definition is used and further ones are ignored. */
static const KeyBinding **default_bindings[] = {
[VIS_MODE_OPERATOR_PENDING] = (const KeyBinding*[]){
- bindings_operator_options,
bindings_operators,
bindings_textobjects,
bindings_motions,