about summary refs log tree commit diff
path: root/fish/completions/xrevbump.fish
diff options
context:
space:
mode:
Diffstat (limited to 'fish/completions/xrevbump.fish')
-rw-r--r--fish/completions/xrevbump.fish11
1 files changed, 11 insertions, 0 deletions
diff --git a/fish/completions/xrevbump.fish b/fish/completions/xrevbump.fish
new file mode 100644
index 0000000..dfb2979
--- /dev/null
+++ b/fish/completions/xrevbump.fish
@@ -0,0 +1,11 @@
+function __xrevbump_complete_git_commit_args
+    set -l tokens (commandline -poc; commandline -ct)
+    set -l dashdash (contains -i -- -- $tokens); or return
+    set -e tokens[1..$dashdash]
+    complete --do-complete="git commit $tokens"
+end
+
+complete -c xrevbump -f
+complete -c xrevbump -n 'not contains -- -- (commandline -poc)' -n '[ (count (commandline -poc)) -gt 1 ]' -a '(__xtools_complete_packages)'
+# Complete `git commit` args after `--`
+complete -c xrevbump -a '(__xrevbump_complete_git_commit_args)'