2005-09-20 13:31:55 +00:00
|
|
|
#
|
|
|
|
# Completions for the help command
|
|
|
|
#
|
|
|
|
|
|
|
|
for i in (builtin -n)
|
2006-03-01 16:53:47 +00:00
|
|
|
complete -c help -x -a $i -d (N_ "Help for the specified builtin")
|
2005-09-20 13:31:55 +00:00
|
|
|
end
|
|
|
|
|
2006-01-11 14:17:35 +00:00
|
|
|
for i in count dirh dirs help mimedb nextd open popd prevd pushd set_color psub umask type
|
2006-03-01 16:53:47 +00:00
|
|
|
complete -c help -x -a $i -d (N_ "Help for the specified command")
|
2005-10-22 10:06:05 +00:00
|
|
|
end
|
|
|
|
|
2005-09-20 13:31:55 +00:00
|
|
|
for i in syntax todo bugs history;
|
2006-03-01 16:53:47 +00:00
|
|
|
complete -c help -x -a $i -d (N_ "Help section" )
|
2005-09-20 13:31:55 +00:00
|
|
|
end
|
|
|
|
|
2006-03-01 16:53:47 +00:00
|
|
|
complete -c help -x -a completion -d (N_ "Help on how tab-completion works")
|
|
|
|
complete -c help -x -a job-control -d (N_ "Help on how job control works")
|
|
|
|
complete -c help -x -a difference -d (N_ "Summary on how fish differs from other shells")
|
2005-09-20 13:31:55 +00:00
|
|
|
|
2006-03-01 16:53:47 +00:00
|
|
|
complete -c help -x -a prompt -d (N_ "Help on how to set the prompt")
|
|
|
|
complete -c help -x -a title -d (N_ "Help on how to set the titlebar message")
|
|
|
|
complete -c help -x -a killring -d (N_ "Help on how to copy and paste")
|
|
|
|
complete -c help -x -a editor -d (N_ "Help on editor shortcuts")
|
|
|
|
complete -c help -x -a variables -d (N_ "Help on environment variables")
|
|
|
|
complete -c help -x -a color -d (N_ "Help on setting syntax highlighting colors")
|
|
|
|
complete -c help -x -a builtin-overview -d (N_ "A short summary of all builtin commands")
|
2005-09-20 13:31:55 +00:00
|
|
|
|
2006-03-01 16:53:47 +00:00
|
|
|
complete -c help -x -a globbing -d (N_ "Help on parameter expansion (Globbing)")
|
|
|
|
complete -c help -x -a expand -d (N_ "Help on parameter expansion (Globbing)")
|
|
|
|
complete -c help -x -a expand-variable -d (N_ "Help on variable expansion \$VARNAME")
|
|
|
|
complete -c help -x -a expand-home -d (N_ "Help on home directory expansion ~USER")
|
|
|
|
complete -c help -x -a expand-brace -d (N_ "Help on brace expansion {a,b,c}")
|
|
|
|
complete -c help -x -a expand-wildcard -d (N_ "Help on wildcard expansion *.*")
|
|
|
|
complete -c help -x -a expand-command-substitution -d (N_ "Help on command substitution (SUBCOMMAND)")
|
|
|
|
complete -c help -x -a expand-process -d (N_ "Help on process expansion %JOB")
|