aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/completions/svn.fish
diff options
context:
space:
mode:
authorGravatar Tassilo Horn <tassilo@member.fsf.org>2006-12-22 07:23:34 +1000
committerGravatar Tassilo Horn <tassilo@member.fsf.org>2006-12-22 07:23:34 +1000
commit594f81ec8c24a5c0344fd6f950164e6241f0fd67 (patch)
treee9a85392697da20caded4f741504b9babe8db357 /share/completions/svn.fish
parent9767b768817231413ef8d46373bff25c0242a9ad (diff)
svn-delete-completion.dpatch
darcs-hash:20061221212334-c06f4-2db8d07267b142165302d63fd94fdc0eb9f6f791.gz
Diffstat (limited to 'share/completions/svn.fish')
-rw-r--r--share/completions/svn.fish9
1 files changed, 9 insertions, 0 deletions
diff --git a/share/completions/svn.fish b/share/completions/svn.fish
index 700e57d6..0bea9281 100644
--- a/share/completions/svn.fish
+++ b/share/completions/svn.fish
@@ -12,6 +12,7 @@ complete -c svn -n '__fish_use_subcommand' -xa 'cat\t"'(_ "Output content of fil
complete -c svn -n '__fish_use_subcommand' -xa 'checkout\t"'(_ "Check out a working copy from the repository")'"'
complete -c svn -n '__fish_use_subcommand' -xa 'cleanup\t"'(_ "Recursively clean up the working copy")'"'
complete -c svn -n '__fish_use_subcommand' -xa 'commit\t"'(_ "Send changes from your working copy to the repository")'"'
+complete -c svn -n '__fish_use_subcommand' -xa 'delete\t"'(_ "Remove file or directory from version control")'"'
complete -c svn -n '__fish_use_subcommand' -xa 'import\t"'(_ "Commit an unversioned file or tree into the repository")'"'
complete -c svn -n '__fish_use_subcommand' -xa 'info\t"'(_ "Display information about a local or remote item")'"'
complete -c svn -n '__fish_use_subcommand' -xa 'list\t"'(_ "List directory entries in the repository")'"'
@@ -117,3 +118,11 @@ complete $switchopt -l relocate -d (N_ "Relocate VIA URL-rewriting")
#
set -l helpopt -c svn -n 'contains help (commandline -poc)'
complete $helpopt -l version -d (N_ "Print client version info")
+
+#
+# Flags for svn delete
+#
+set -l deleteopt -c svn -n 'contains delete (commandline -poc)'
+complete $deleteopt -l force -d (N_ "force operation to run")
+complete $deleteopt -s q -l quiet -d (N_ "print as little as possible")
+complete $deleteopt -l targets -d (N_ "pass contents of file ARG as additional args")