diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2020-07-26 11:35:00 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2020-08-01 14:59:32 +0200 |
| commit | 534c5096dabf570f79eb9c0ee42702ec41003265 (patch) | |
| tree | c7e608f0b89e4d56b76d12cbf3bbb8bf289b08d6 | |
| parent | ef7f3ec0c53fc8b7ec193d292b4555d162219d8b (diff) | |
| download | vis-534c5096dabf570f79eb9c0ee42702ec41003265.tar.gz vis-534c5096dabf570f79eb9c0ee42702ec41003265.tar.xz | |
vis: use ~ instead of ! for selection complement
This seems more consistent with the typical set/bit operations.
| -rw-r--r-- | config.def.h | 2 | ||||
| -rw-r--r-- | man/vis.1 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/config.def.h b/config.def.h index d99277c..ac00165 100644 --- a/config.def.h +++ b/config.def.h @@ -133,7 +133,7 @@ static const KeyBinding bindings_selections[] = { { "M", ACTION(SELECTIONS_RESTORE) }, { "|", ACTION(SELECTIONS_UNION) }, { "&", ACTION(SELECTIONS_INTERSECT) }, - { "!", ACTION(SELECTIONS_COMPLEMENT) }, + { "~", ACTION(SELECTIONS_COMPLEMENT) }, { "\\", ACTION(SELECTIONS_MINUS) }, { "z|", ACTION(SELECTIONS_COMBINE_UNION) }, { "z&", ACTION(SELECTIONS_COMBINE_INTERSECT) }, @@ -1160,7 +1160,7 @@ set union set intersection .It Ic \e set minus -.It Ic \&! +.It Ic ~ set complement .It Ic z\&| pairwise union |
