Since commit 99d8d00 ("User-defined commands no longer need to be
prefixed with '!'"), we don't need it anymore. Also, remove a
superfluous comment.
Signed-off-by: Wolfram Sang <wsa@kernel.org>
---
doc/manual.adoc | 2 +-
doc/tigrc.5.adoc | 3 +--
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/doc/manual.adoc b/doc/manual.adoc
index cf87ba1..0d772ea 100644
--- a/doc/manual.adoc
+++ b/doc/manual.adoc
@@ -208,7 +208,7 @@ Example user-defined commands:
- Copy commit ID to clipboard:
- bind generic 9 !@sh -c "echo -n %(commit) | xclip -selection c"
+ bind generic 9 @sh -c "echo -n %(commit) | xclip -selection c"
- Add/edit notes for the current commit used during a review:
diff --git a/doc/tigrc.5.adoc b/doc/tigrc.5.adoc
index 1aa8085..6b40afe 100644
--- a/doc/tigrc.5.adoc
+++ b/doc/tigrc.5.adoc
@@ -780,8 +780,7 @@ file:
gitk-bg = !"gitk HEAD --not $(git rev-parse --remotes) &"
publish = !"for i in origin public; do git push $i; done"
[tig "bind"]
- # @-prefix means that the console output will not be shown.
- generic = V !@git gitk-bg
+ generic = V @git gitk-bg
generic = > !git publish
--------------------------------------------------------------------------
--
2.20.1