aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2017-07-27 23:57:33 +0200
committerMarc André Tanner <mat@brain-dump.org>2017-09-15 11:35:26 +0200
commit8162e86bc20a581cb7e82ba51893acbdbb7c6a37 (patch)
tree9d827debf75bf1ba18fce56cb2607e0e7a0bd215 /config.def.h
parent791330584baaf3b809047719d74308dc54f28bac (diff)
downloadvis-8162e86bc20a581cb7e82ba51893acbdbb7c6a37.tar.gz
vis-8162e86bc20a581cb7e82ba51893acbdbb7c6a37.tar.xz
vis: remove ! operator
Use visual mode and :| to filter text through external commands. The mapping was already reused for selection complement.
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h
index 4791fe4..ca05c0f 100644
--- a/config.def.h
+++ b/config.def.h
@@ -182,7 +182,7 @@ static const KeyBinding bindings_operators[] = {
{ "g~", ACTION(OPERATOR_CASE_SWAP) },
{ "gp", ACTION(PUT_AFTER_END) },
{ "gP", ACTION(PUT_BEFORE_END) },
- { "gq", ACTION(OPERATOR_FILTER_FMT) },
+ { "gq", ALIAS(":| fmt<Enter>") },
{ "gu", ACTION(OPERATOR_CASE_LOWER) },
{ "gU", ACTION(OPERATOR_CASE_UPPER) },
{ "p", ACTION(PUT_AFTER) },