aboutsummaryrefslogtreecommitdiffhomepage
path: root/init/completions/help.fish
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2005-12-07 23:03:30 +1000
committerGravatar axel <axel@liljencrantz.se>2005-12-07 23:03:30 +1000
commitab13c4caadc87a23b327b61ada7bd495a8ef9ce1 (patch)
tree697a95fb2d18f1c693c3b8cee79c5dff93402304 /init/completions/help.fish
parent479696a8ecd0d375f8886c5488aa954c21e96107 (diff)
Give intelligent warning messages on zero-length variable names.
darcs-hash:20051207130330-ac50b-cc9d78ba63f592925b6076049e2c59aaaa930eec.gz
Diffstat (limited to 'init/completions/help.fish')
-rw-r--r--init/completions/help.fish8
1 files changed, 7 insertions, 1 deletions
diff --git a/init/completions/help.fish b/init/completions/help.fish
index 4dd2f46f..6f20fcd1 100644
--- a/init/completions/help.fish
+++ b/init/completions/help.fish
@@ -22,7 +22,6 @@ complete -c help -x -a prompt -d "Help on how to set the prompt"
complete -c help -x -a title -d "Help on how to set the titlebar message"
complete -c help -x -a killring -d "Help on how to copy and paste"
complete -c help -x -a editor -d "Help on editor shortcuts"
-complete -c help -x -a expand -d "Help on parameter expantion (Globbing)"
complete -c help -x -a globbing -d "Help on parameter expantion (Globbing)"
complete -c help -x -a variables -d "Help on environment variables"
complete -c help -x -a color -d "Help on setting syntax highlighting colors"
@@ -31,3 +30,10 @@ complete -c help -x -a title -d "Help on changing the titlebar messages"
complete -c help -x -a builtin-overview -d "A short summary of all builtin commands"
complete -c help -x -a changes -d "The changelog"
+complete -c help -x -a expand -d "Help on parameter expantion (Globbing)"
+complete -c help -x -a expand-variable -d "Help on variable exapantion \$VARNAME"
+complete -c help -x -a expand-home -d "Help on home directory expantion ~USER"
+complete -c help -x -a expand-brace -d "Help on brace expantion {a,b,c}"
+complete -c help -x -a expand-wildcard -d "Help on wildcard expantion *.*"
+complete -c help -x -a expand-command-substitution -d "Help on command substututions (SUBCOMMAND)"
+complete -c help -x -a expand-process -d "Help on process expantion %JOB"