Run fish_indent on all non-test .fish files

This commit is contained in:
Ilan Cosman 2021-11-22 19:55:15 -08:00 committed by Fabian Homborg
parent 37f385b193
commit 566a673e4f
28 changed files with 262 additions and 266 deletions

View File

@ -1089,4 +1089,3 @@ alias alias1020='something --arg1020'
alias alias1021='something --arg1021' alias alias1021='something --arg1021'
alias alias1022='something --arg1022' alias alias1022='something --arg1022'
alias alias1023='something --arg1023' alias alias1023='something --arg1023'

View File

@ -1,4 +1,3 @@
for i in (seq 2000) for i in (seq 2000)
command true command true
end end

View File

@ -14,8 +14,7 @@ set -g whitelist \
# unclear what this is \ # unclear what this is \
l_constinit \ l_constinit \
# hacks to work around missing ncurses strings on mac \ # hacks to work around missing ncurses strings on mac \
sitm_esc ritm_esc dim_esc \ sitm_esc ritm_esc dim_esc
# In our nm regex, we are interested in data (dD) and bss (bB) segments. # In our nm regex, we are interested in data (dD) and bss (bB) segments.
set -g nm_regex '^([^ ]+) ([dDbB])' set -g nm_regex '^([^ ]+) ([dDbB])'
@ -24,8 +23,7 @@ set -l total_globals 0
set -l boring_files \ set -l boring_files \
fish_key_reader.cpp.o \ fish_key_reader.cpp.o \
fish_tests.cpp.o \ fish_tests.cpp.o \
fish_indent.cpp.o \ fish_indent.cpp.o
# return if we should ignore the given symbol name # return if we should ignore the given symbol name
function should_ignore function should_ignore

View File

@ -7,24 +7,24 @@ complete -c clasp -s W -l why -d "Display some debugging info upon exit."
complete -c clasp -s h -l help -d "display help for command" complete -c clasp -s h -l help -d "display help for command"
# subcommands # subcommands
complete -f -c clasp -n '__fish_use_subcommand' -xa login -d "Log in to script.google.com" complete -f -c clasp -n __fish_use_subcommand -xa login -d "Log in to script.google.com"
complete -f -c clasp -n '__fish_use_subcommand' -xa logout -d "Log out" complete -f -c clasp -n __fish_use_subcommand -xa logout -d "Log out"
complete -f -c clasp -n '__fish_use_subcommand' -xa create -d "Create a script" complete -f -c clasp -n __fish_use_subcommand -xa create -d "Create a script"
complete -f -c clasp -n '__fish_use_subcommand' -xa clone -d "Clone a project" complete -f -c clasp -n __fish_use_subcommand -xa clone -d "Clone a project"
complete -f -c clasp -n '__fish_use_subcommand' -xa pull -d "Fetch a remote project" complete -f -c clasp -n __fish_use_subcommand -xa pull -d "Fetch a remote project"
complete -f -c clasp -n '__fish_use_subcommand' -xa push -d "Update the remote project" complete -f -c clasp -n __fish_use_subcommand -xa push -d "Update the remote project"
complete -f -c clasp -n '__fish_use_subcommand' -xa status -d "Lists files that will be pushed by clasp" complete -f -c clasp -n __fish_use_subcommand -xa status -d "Lists files that will be pushed by clasp"
complete -f -c clasp -n '__fish_use_subcommand' -xa open -d "Open a script" complete -f -c clasp -n __fish_use_subcommand -xa open -d "Open a script"
complete -f -c clasp -n '__fish_use_subcommand' -xa deployments -d "List deployment ids of a script" complete -f -c clasp -n __fish_use_subcommand -xa deployments -d "List deployment ids of a script"
complete -f -c clasp -n '__fish_use_subcommand' -xa deploy -d "Deploy a project" complete -f -c clasp -n __fish_use_subcommand -xa deploy -d "Deploy a project"
complete -f -c clasp -n '__fish_use_subcommand' -xa undeploy -d "Undeploy a deployment of a project" complete -f -c clasp -n __fish_use_subcommand -xa undeploy -d "Undeploy a deployment of a project"
complete -f -c clasp -n '__fish_use_subcommand' -xa version -d "Creates an immutable version of the script" complete -f -c clasp -n __fish_use_subcommand -xa version -d "Creates an immutable version of the script"
complete -f -c clasp -n '__fish_use_subcommand' -xa versions -d "List versions of a script" complete -f -c clasp -n __fish_use_subcommand -xa versions -d "List versions of a script"
complete -f -c clasp -n '__fish_use_subcommand' -xa list -d "List App Scripts projects" complete -f -c clasp -n __fish_use_subcommand -xa list -d "List App Scripts projects"
complete -f -c clasp -n '__fish_use_subcommand' -xa logs -d "Shows the StackDriver logs" complete -f -c clasp -n __fish_use_subcommand -xa logs -d "Shows the StackDriver logs"
complete -f -c clasp -n '__fish_use_subcommand' -xa run -d "Run a function in your Apps Scripts project" complete -f -c clasp -n __fish_use_subcommand -xa run -d "Run a function in your Apps Scripts project"
complete -f -c clasp -n '__fish_use_subcommand' -xa apis -d "List, enable, or disable APIs" complete -f -c clasp -n __fish_use_subcommand -xa apis -d "List, enable, or disable APIs"
complete -f -c clasp -n '__fish_use_subcommand' -xa help -d "display help for command" complete -f -c clasp -n __fish_use_subcommand -xa help -d "display help for command"
# login options # login options
complete -c clasp -n '__fish_seen_subcommand_from login' -l no-localhost -d 'Do not run a local server, manually enter code instead' complete -c clasp -n '__fish_seen_subcommand_from login' -l no-localhost -d 'Do not run a local server, manually enter code instead'

View File

@ -6,15 +6,15 @@ complete -c dart -l enable-analytics -d "Enable analytics."
complete -c dart -l disable-analytics -d "Disable analytics." complete -c dart -l disable-analytics -d "Disable analytics."
# commands # commands
complete -f -c dart -n '__fish_use_subcommand' -xa analyze -d "Analyze Dart code in a directory." complete -f -c dart -n __fish_use_subcommand -xa analyze -d "Analyze Dart code in a directory."
complete -f -c dart -n '__fish_use_subcommand' -xa compile -d "Compile Dart to various formats." complete -f -c dart -n __fish_use_subcommand -xa compile -d "Compile Dart to various formats."
complete -f -c dart -n '__fish_use_subcommand' -xa create -d "Create a new Dart project." complete -f -c dart -n __fish_use_subcommand -xa create -d "Create a new Dart project."
complete -f -c dart -n '__fish_use_subcommand' -xa fix -d "Apply automated fixes to Dart source code." complete -f -c dart -n __fish_use_subcommand -xa fix -d "Apply automated fixes to Dart source code."
complete -f -c dart -n '__fish_use_subcommand' -xa format -d "Idiomatically format Dart source code." complete -f -c dart -n __fish_use_subcommand -xa format -d "Idiomatically format Dart source code."
complete -f -c dart -n '__fish_use_subcommand' -xa migrate -d "Perform null safety migration on a project." complete -f -c dart -n __fish_use_subcommand -xa migrate -d "Perform null safety migration on a project."
complete -f -c dart -n '__fish_use_subcommand' -xa pub -d "Work with packages." complete -f -c dart -n __fish_use_subcommand -xa pub -d "Work with packages."
complete -f -c dart -n '__fish_use_subcommand' -xa run -d "Run a Dart program." complete -f -c dart -n __fish_use_subcommand -xa run -d "Run a Dart program."
complete -f -c dart -n '__fish_use_subcommand' -xa test -d "Run tests for a project." complete -f -c dart -n __fish_use_subcommand -xa test -d "Run tests for a project."
# analyze # analyze
complete -c dart -n '__fish_seen_subcommand_from analyze' -l fatal-infos -d 'Treat info level issues as fatal.' complete -c dart -n '__fish_seen_subcommand_from analyze' -l fatal-infos -d 'Treat info level issues as fatal.'

View File

@ -2,7 +2,7 @@ complete -c elvish -o help -d 'Show help and exit'
complete -c elvish -o version -d 'Show version and exit' complete -c elvish -o version -d 'Show version and exit'
complete -c elvish -o buildinfo -d 'Show build info and exit' complete -c elvish -o buildinfo -d 'Show build info and exit'
complete -c elvish -s c -o compileonly -d 'Compile' complete -c elvish -s c -o compileonly -d Compile
complete -c elvish -o cpuprofile -d 'Write cpu profile' complete -c elvish -o cpuprofile -d 'Write cpu profile'
complete -c elvish -o deprecation-level -f -d 'Warn about deprecated features' complete -c elvish -o deprecation-level -f -d 'Warn about deprecated features'
complete -c elvish -s i -o json -d 'Show output in JSON' complete -c elvish -s i -o json -d 'Show output in JSON'

View File

@ -19,7 +19,7 @@ function __fish_print_firewalld_helpers --description "Print list of predefined
end end
function __fish_print_firewalld_protocols --description "Print list of protocols supported by firewalld" function __fish_print_firewalld_protocols --description "Print list of protocols supported by firewalld"
string replace -f -r '^([[:alnum:]]\S*).*' '$1' < /etc/protocols string replace -f -r '^([[:alnum:]]\S*).*' '$1' </etc/protocols
end end
complete -c firewall-cmd -f complete -c firewall-cmd -f

View File

@ -1,7 +1,7 @@
complete fish_config -f complete fish_config -f
set -l prompt_commands choose save show list set -l prompt_commands choose save show list
set -l theme_commands choose demo dump save show list set -l theme_commands choose demo dump save show list
complete fish_config -n '__fish_use_subcommand' -a prompt -d 'View and pick from the sample prompts' complete fish_config -n __fish_use_subcommand -a prompt -d 'View and pick from the sample prompts'
complete fish_config -n "__fish_seen_subcommand_from prompt; and not __fish_seen_subcommand_from $prompt_commands" \ complete fish_config -n "__fish_seen_subcommand_from prompt; and not __fish_seen_subcommand_from $prompt_commands" \
-a choose -d 'View and pick from the sample prompts' -a choose -d 'View and pick from the sample prompts'
complete fish_config -n "__fish_seen_subcommand_from prompt; and not __fish_seen_subcommand_from $prompt_commands" \ complete fish_config -n "__fish_seen_subcommand_from prompt; and not __fish_seen_subcommand_from $prompt_commands" \
@ -12,9 +12,9 @@ complete fish_config -n "__fish_seen_subcommand_from prompt; and not __fish_seen
-a save -d 'Save the current or given prompt to ~/.config/fish' -a save -d 'Save the current or given prompt to ~/.config/fish'
complete fish_config -n '__fish_seen_subcommand_from prompt; and __fish_seen_subcommand_from choose save show' -a '(fish_config prompt list)' complete fish_config -n '__fish_seen_subcommand_from prompt; and __fish_seen_subcommand_from choose save show' -a '(fish_config prompt list)'
complete fish_config -n '__fish_use_subcommand' -a browse -d 'Open the web-based UI' complete fish_config -n __fish_use_subcommand -a browse -d 'Open the web-based UI'
complete fish_config -n '__fish_use_subcommand' -a theme -d 'View and pick from the sample themes' complete fish_config -n __fish_use_subcommand -a theme -d 'View and pick from the sample themes'
complete fish_config -n '__fish_seen_subcommand_from theme; and __fish_seen_subcommand_from choose save show' -a '(fish_config theme list)' complete fish_config -n '__fish_seen_subcommand_from theme; and __fish_seen_subcommand_from choose save show' -a '(fish_config theme list)'
complete fish_config -n "__fish_seen_subcommand_from theme; and not __fish_seen_subcommand_from $theme_commands" \ complete fish_config -n "__fish_seen_subcommand_from theme; and not __fish_seen_subcommand_from $theme_commands" \
-a choose -d 'View and pick from the sample themes' -a choose -d 'View and pick from the sample themes'

View File

@ -1,4 +1,4 @@
complete -c funcsave -d "save function(s) to disk" complete -c funcsave -d "save function(s) to disk"
complete -c funcsave -xa "(functions -na)" complete -c funcsave -xa "(functions -na)"
complete -c funcsave -s d -l directory -d "dir to save function(s) into" -a '$fish_function_path' -r complete -c funcsave -s d -l directory -d "dir to save function(s) into" -a '$fish_function_path' -r
complete -c funcsave -s q -d "suppress output" -r complete -c funcsave -s q -d "suppress output" -r

View File

@ -23,8 +23,8 @@ function __fish_hashcat_device_types --description "Get hashcat device types"
3\t'FPGA, DSP, Co-Processor'" 3\t'FPGA, DSP, Co-Processor'"
end end
complete -c hashcat -s m -l hash-type -xa "(__fish_hashcat_types)" -d "Hash-type" complete -c hashcat -s m -l hash-type -xa "(__fish_hashcat_types)" -d Hash-type
complete -c hashcat -s a -l attack-mode -d "Attack-mode" -xa " complete -c hashcat -s a -l attack-mode -d Attack-mode -xa "
0\t'Straight' 0\t'Straight'
1\t'Combination' 1\t'Combination'
3\t'Brute-force' 3\t'Brute-force'

View File

@ -75,7 +75,7 @@ complete -c john -l mkpc -rf -d "request a lower max. keys per crypt"
complete -c john -l min-length -rf -d "request a minimum candidate length in bytes" complete -c john -l min-length -rf -d "request a minimum candidate length in bytes"
complete -c john -l max-length -rf -d "request a maximum candidate length in bytes" complete -c john -l max-length -rf -d "request a maximum candidate length in bytes"
complete -c john -l length -rf -d "shortcut for --min-len=N --max-len=N" complete -c john -l length -rf -d "shortcut for --min-len=N --max-len=N"
complete -c john -l field-separator-char -rf -d "use custom character instead of ':' in input and pot files" complete -c john -l field-separator-char -rf -d "use custom character instead of ':' in input and pot files"
complete -c john -l config -rF -d "use custom file instead of john.conf or john.ini" complete -c john -l config -rF -d "use custom file instead of john.conf or john.ini"
complete -c john -l log-stderr -d "log to screen instead of file" complete -c john -l log-stderr -d "log to screen instead of file"
complete -c john -l no-loader-dupecheck -d "disable the dupe checking when loading hashes" complete -c john -l no-loader-dupecheck -d "disable the dupe checking when loading hashes"

View File

@ -7,5 +7,5 @@
# kmutil -h # kmutil -h
if [ (command -v kmutil) = /usr/bin/kmutil ] if [ (command -v kmutil) = /usr/bin/kmutil ]
command kmutil --generate-completion-script=fish | source command kmutil --generate-completion-script=fish | source
end end

View File

@ -1,13 +1,13 @@
complete -c mono -s h -l help -d 'Show help and exit' complete -c mono -s h -l help -d 'Show help and exit'
complete -c mono -s V -l version -a 'number' -f -d 'Show version and exit' complete -c mono -s V -l version -a number -f -d 'Show version and exit'
complete -c mono -l aot -a 'asmonly bind-to-runtime-version data-outfile direct-icalls complete -c mono -l aot -a 'asmonly bind-to-runtime-version data-outfile direct-icalls
direct-pinvoke dwarfdebug full hybrid llvm llvmonly llvmopts llvmllc mcpu dedup-include direct-pinvoke dwarfdebug full hybrid llvm llvmonly llvmopts llvmllc mcpu dedup-include
info interp depfile ld-flags llvm-path msym-dir mtriple nimt-trampolines ngsharedvt-trampolines info interp depfile ld-flags llvm-path msym-dir mtriple nimt-trampolines ngsharedvt-trampolines
nodebug no-direct-calls nrgctx-trampolines nrgctx-fetch-trampolines ntrampolines outfile nodebug no-direct-calls nrgctx-trampolines nrgctx-fetch-trampolines ntrampolines outfile
print-skipped-methods profile profile-only readonly-value save-temps,keep-temps soft-debug print-skipped-methods profile profile-only readonly-value save-temps,keep-temps soft-debug
static stats temp-path threads tool-prefix verbose write-symbols,no-write-symbols no-opt'\ static stats temp-path threads tool-prefix verbose write-symbols,no-write-symbols no-opt' \
-f -d 'Precompile CIL code to native code' -f -d 'Precompile CIL code to native code'
complete -c mono -l debug -a 'casts mdb-optimizations gdb' -f -d 'Use debug mode' complete -c mono -l debug -a 'casts mdb-optimizations gdb' -f -d 'Use debug mode'
complete -c mono -l debugger-agent -a 'address loglevel logfile server setpgid suspend complete -c mono -l debugger-agent -a 'address loglevel logfile server setpgid suspend
transport' -f -d 'Use debugger agent' transport' -f -d 'Use debugger agent'
@ -21,7 +21,7 @@ complete -c mono -l runtime -f -d 'Use runtime version'
complete -c mono -l optimize -a 'abcrem all aot branch cfold cmov deadce consprop copyprop complete -c mono -l optimize -a 'abcrem all aot branch cfold cmov deadce consprop copyprop
fcmov float32 gshared inline intrins linears leaf loop peephole precomp sched shared fcmov float32 gshared inline intrins linears leaf loop peephole precomp sched shared
sse2 tailc' -f -d 'Use optimizations' sse2 tailc' -f -d 'Use optimizations'
complete -c mono -l attach -a 'disable' -f -d 'Specify attach agent options' complete -c mono -l attach -a disable -f -d 'Specify attach agent options'
complete -c mono -l llvm -d 'Use LLVM' complete -c mono -l llvm -d 'Use LLVM'
complete -c mono -l nollvm -d 'Don\'t use LLVM' complete -c mono -l nollvm -d 'Don\'t use LLVM'
complete -c mono -l gc -a 'sgen boehm' -f -d 'Specify garbage collector' complete -c mono -l gc -a 'sgen boehm' -f -d 'Specify garbage collector'

View File

@ -1,20 +1,20 @@
complete -c ng -f -d "The Angular CLI" complete -c ng -f -d "The Angular CLI"
complete -c ng -n __fish_use_subcommand -a "add" -d "Add dependency" complete -c ng -n __fish_use_subcommand -a add -d "Add dependency"
complete -c ng -n __fish_use_subcommand -a "analytics" -d "Configure analytics" complete -c ng -n __fish_use_subcommand -a analytics -d "Configure analytics"
complete -c ng -n __fish_use_subcommand -a "build" -d "Compile Angular app" complete -c ng -n __fish_use_subcommand -a build -d "Compile Angular app"
complete -c ng -n __fish_use_subcommand -a "config" -d "get/set config vars" complete -c ng -n __fish_use_subcommand -a config -d "get/set config vars"
complete -c ng -n __fish_use_subcommand -a "deploy" -d "Deploy builder" complete -c ng -n __fish_use_subcommand -a deploy -d "Deploy builder"
complete -c ng -n __fish_use_subcommand -a "doc" -d "Search documentation" complete -c ng -n __fish_use_subcommand -a doc -d "Search documentation"
complete -c ng -n __fish_use_subcommand -a "e2e" -d "Run e2e tests" complete -c ng -n __fish_use_subcommand -a e2e -d "Run e2e tests"
complete -c ng -n __fish_use_subcommand -a "extract-i18n" -d "Extracts i18n" complete -c ng -n __fish_use_subcommand -a extract-i18n -d "Extracts i18n"
complete -c ng -n __fish_use_subcommand -a "make-this-awesome" -d "" complete -c ng -n __fish_use_subcommand -a make-this-awesome -d ""
complete -c ng -n __fish_use_subcommand -a "generate" -d "Create <schematic>" complete -c ng -n __fish_use_subcommand -a generate -d "Create <schematic>"
complete -c ng -n __fish_use_subcommand -a "help" -d "Display help" complete -c ng -n __fish_use_subcommand -a help -d "Display help"
complete -c ng -n __fish_use_subcommand -a "lint" -d "Run linter" complete -c ng -n __fish_use_subcommand -a lint -d "Run linter"
complete -c ng -n __fish_use_subcommand -a "new" -d "New workspace" complete -c ng -n __fish_use_subcommand -a new -d "New workspace"
complete -c ng -n __fish_use_subcommand -a "run" -d "Run Architect" complete -c ng -n __fish_use_subcommand -a run -d "Run Architect"
complete -c ng -n __fish_use_subcommand -a "serve" -d "Start dev server" complete -c ng -n __fish_use_subcommand -a serve -d "Start dev server"
complete -c ng -n __fish_use_subcommand -a "test" -d "Run unit tests" complete -c ng -n __fish_use_subcommand -a test -d "Run unit tests"
complete -c ng -n __fish_use_subcommand -a "update" -d "Update deps" complete -c ng -n __fish_use_subcommand -a update -d "Update deps"
complete -c ng -n __fish_use_subcommand -a "version" -d "Display version" complete -c ng -n __fish_use_subcommand -a version -d "Display version"

View File

@ -79,7 +79,7 @@ switch $ping_version
complete -c ping -s I -d "Source interface or IP address" -xa "(__fish_print_interfaces; __fish_print_addresses)" complete -c ping -s I -d "Source interface or IP address" -xa "(__fish_print_interfaces; __fish_print_addresses)"
complete -c ping -s W -d "Seconds to wait for the first response" -x complete -c ping -s W -d "Seconds to wait for the first response" -x
complete -c ping -s w -d "Seconds until ping exits" -x complete -c ping -s w -d "Seconds until ping exits" -x
complete -c ping -s q -d "Quiet" complete -c ping -s q -d Quiet
complete -c ping -s p -d "Payload pattern" -x complete -c ping -s p -d "Payload pattern" -x
case '*' case '*'

View File

@ -1,17 +1,17 @@
### subcommands ### subcommands
complete -f -c ros -n '__fish_use_subcommand' -xa run -d "Run repl" complete -f -c ros -n __fish_use_subcommand -xa run -d "Run repl"
complete -f -c ros -n '__fish_use_subcommand' -xa install -d "Install a given implementation or a system for roswell environment" complete -f -c ros -n __fish_use_subcommand -xa install -d "Install a given implementation or a system for roswell environment"
complete -f -c ros -n '__fish_use_subcommand' -xa update -d "Update installed systems." complete -f -c ros -n __fish_use_subcommand -xa update -d "Update installed systems."
complete -f -c ros -n '__fish_use_subcommand' -xa build -d "Make executable from script." complete -f -c ros -n __fish_use_subcommand -xa build -d "Make executable from script."
complete -f -c ros -n '__fish_use_subcommand' -xa use -d "Change default implementation." complete -f -c ros -n __fish_use_subcommand -xa use -d "Change default implementation."
complete -f -c ros -n '__fish_use_subcommand' -xa init -d "Creates a new ros script, optionally based on a template." complete -f -c ros -n __fish_use_subcommand -xa init -d "Creates a new ros script, optionally based on a template."
complete -f -c ros -n '__fish_use_subcommand' -xa fmt -d "Indent lisp source." complete -f -c ros -n __fish_use_subcommand -xa fmt -d "Indent lisp source."
complete -f -c ros -n '__fish_use_subcommand' -xa list -d "List Information" complete -f -c ros -n __fish_use_subcommand -xa list -d "List Information"
complete -f -c ros -n '__fish_use_subcommand' -xa template -d "Manage templates" complete -f -c ros -n __fish_use_subcommand -xa template -d "Manage templates"
complete -f -c ros -n '__fish_use_subcommand' -xa delete -d "Delete installed implementations" complete -f -c ros -n __fish_use_subcommand -xa delete -d "Delete installed implementations"
complete -f -c ros -n '__fish_use_subcommand' -xa config -d "Get and set options" complete -f -c ros -n __fish_use_subcommand -xa config -d "Get and set options"
complete -f -c ros -n '__fish_use_subcommand' -xa version -d "Show the roswell version information" complete -f -c ros -n __fish_use_subcommand -xa version -d "Show the roswell version information"
complete -f -c ros -n '__fish_use_subcommand' -xa help -d "Use \"ros help [command]\" for more information about a command." complete -f -c ros -n __fish_use_subcommand -xa help -d "Use \"ros help [command]\" for more information about a command."
### help ### help
set -l __roswell_helps "run install update build use init fmt list template delete config version" set -l __roswell_helps "run install update build use init fmt list template delete config version"
@ -49,7 +49,7 @@ complete -c ros -n '__fish_seen_subcommand_from run' -l write -d 'evaluate and w
complete -c ros -n '__fish_seen_subcommand_from run' -s F -d 'evaluate FORM before dumping IMAGE' complete -c ros -n '__fish_seen_subcommand_from run' -s F -d 'evaluate FORM before dumping IMAGE'
complete -c ros -n '__fish_seen_subcommand_from run' -l final -d 'evaluate FORM before dumping IMAGE' complete -c ros -n '__fish_seen_subcommand_from run' -l final -d 'evaluate FORM before dumping IMAGE'
complete -c ros -n '__fish_seen_subcommand_from run' -a +R -d 'skip /etc/rosrc, ~/.roswell/init.lisp' complete -c ros -n '__fish_seen_subcommand_from run' -a +R -d 'skip /etc/rosrc, ~/.roswell/init.lisp'
complete -c ros -n '__fish_seen_subcommand_from run' -l "no-rc" -d 'skip /etc/rosrc, ~/.roswell/init.lisp' complete -c ros -n '__fish_seen_subcommand_from run' -l no-rc -d 'skip /etc/rosrc, ~/.roswell/init.lisp'
complete -c ros -n '__fish_seen_subcommand_from run' -s A -d 'use new asdf' complete -c ros -n '__fish_seen_subcommand_from run' -s A -d 'use new asdf'
complete -c ros -n '__fish_seen_subcommand_from run' -l asdf -d 'use new asdf' complete -c ros -n '__fish_seen_subcommand_from run' -l asdf -d 'use new asdf'
complete -c ros -n '__fish_seen_subcommand_from run' -a +Q -d 'do not use quicklisp' complete -c ros -n '__fish_seen_subcommand_from run' -a +Q -d 'do not use quicklisp'

View File

@ -1,6 +1,6 @@
complete -c sbcl -l help -d "Print this message and exit." complete -c sbcl -l help -d "Print this message and exit."
complete -c sbcl -l version -d "Print version information and exit." complete -c sbcl -l version -d "Print version information and exit."
complete -c sbcl -l core -d "Use the specified core file instead of the default." complete -c sbcl -l core -d "Use the specified core file instead of the default."
complete -c sbcl -l dynamic-space-size -d "Size of reserved dynamic space in megabytes." complete -c sbcl -l dynamic-space-size -d "Size of reserved dynamic space in megabytes."
complete -c sbcl -l control-stack-size -d "Size of reserved control stack in megabytes." complete -c sbcl -l control-stack-size -d "Size of reserved control stack in megabytes."
complete -c sbcl -l tls-limit -d "Maximum number of thread-local symbols." complete -c sbcl -l tls-limit -d "Maximum number of thread-local symbols."

View File

@ -6,7 +6,7 @@
# checking the path is as expected is about as far as we're going with validation # checking the path is as expected is about as far as we're going with validation
if [ (command -v shortcuts) = /usr/bin/shortcuts ] if [ (command -v shortcuts) = /usr/bin/shortcuts ]
command shortcuts --generate-completion-script=fish | source command shortcuts --generate-completion-script=fish | source
end end
# output is like: # output is like:

View File

@ -2,9 +2,9 @@
function __fish_snap_no_subcommand -d 'Test if snap has yet to be given the subcommand' function __fish_snap_no_subcommand -d 'Test if snap has yet to be given the subcommand'
for i in (commandline -opc) for i in (commandline -opc)
if contains -- $i abort ack alias aliases buy changes connect disable disconnect download\ if contains -- $i abort ack alias aliases buy changes connect disable disconnect download \
enable find get help info install interfaces known list login logout prefer refresh remove\ enable find get help info install interfaces known list login logout prefer refresh remove \
revert run set tasks try unalias version watch revert run set tasks try unalias version watch
return 1 return 1
end end
end end
@ -81,8 +81,8 @@ end
function __fish_snap_no_assertion -d 'Check that no assertion type is used yet' function __fish_snap_no_assertion -d 'Check that no assertion type is used yet'
for i in (commandline -opc) for i in (commandline -opc)
if contains -- $i account account-key model serial snap-declaration snap-build snap-revision\ if contains -- $i account account-key model serial snap-declaration snap-build snap-revision \
system-user validation system-user validation
return 1 return 1
end end
end end
@ -102,8 +102,8 @@ function __fish_snap_assertion
set -l assertion $argv[1] set -l assertion $argv[1]
set -e argv[1] set -e argv[1]
complete -f -c snap -n '__fish_snap_using_subcommand known; and __fish_snap_no_assertion' -a $assertion complete -f -c snap -n '__fish_snap_using_subcommand known; and __fish_snap_no_assertion' -a $assertion
complete -f -c snap -n "__fish_snap_using_assertion $assertion" -a "(__fish_snap_filters $assertion)"\ complete -f -c snap -n "__fish_snap_using_assertion $assertion" -a "(__fish_snap_filters $assertion)" \
-d Filter -d Filter
end end
function __fish_snap_filters -d 'List assertion filters' function __fish_snap_filters -d 'List assertion filters'

View File

@ -12,7 +12,7 @@ if sysctl -h >/dev/null 2>/dev/null
complete -c sysctl -s N -l names -d 'Only print names' complete -c sysctl -s N -l names -d 'Only print names'
complete -c sysctl -s q -l quiet -d 'Be quiet when setting values' complete -c sysctl -s q -l quiet -d 'Be quiet when setting values'
complete -c sysctl -s w -l write -d 'Write value' complete -c sysctl -s w -l write -d 'Write value'
complete -c sysctl -s p -l load -d 'Load in sysctl settings from the file specified or /etc/sysctl' complete -c sysctl -s p -l load -d 'Load in sysctl settings from the file specified or /etc/sysctl'
complete -c sysctl -s a -l all -d 'Display all values currently available' complete -c sysctl -s a -l all -d 'Display all values currently available'
complete -c sysctl -l deprecated -d 'Include deprecated parameters too' complete -c sysctl -l deprecated -d 'Include deprecated parameters too'
complete -c sysctl -s b -l binary -d 'Print value without new line' complete -c sysctl -s b -l binary -d 'Print value without new line'

View File

@ -27,29 +27,29 @@ complete -c systemd-analyze -l no-pager -d 'Do not pipe output into a pager'
# subcommands # subcommands
complete -c systemd-analyze -n "__fish_use_subcommand" -a time -d "Print timing statistics" complete -c systemd-analyze -n __fish_use_subcommand -a time -d "Print timing statistics"
complete -c systemd-analyze -n "__fish_use_subcommand" -a blame -d "Print list of running units ordered by time to init" complete -c systemd-analyze -n __fish_use_subcommand -a blame -d "Print list of running units ordered by time to init"
complete -c systemd-analyze -n "__fish_use_subcommand" -a critical-chain -d "Print a tree of the time critical chain of units" complete -c systemd-analyze -n __fish_use_subcommand -a critical-chain -d "Print a tree of the time critical chain of units"
complete -c systemd-analyze -n "__fish_seen_subcommand_from critical-chain" -a "(__fish_systemd_units)" complete -c systemd-analyze -n "__fish_seen_subcommand_from critical-chain" -a "(__fish_systemd_units)"
complete -c systemd-analyze -n "__fish_use_subcommand" -a dump -d "Output serialization of server state" complete -c systemd-analyze -n __fish_use_subcommand -a dump -d "Output serialization of server state"
complete -c systemd-analyze -n "__fish_use_subcommand" -a plot -d "Output SVG graphic showing service initialization" complete -c systemd-analyze -n __fish_use_subcommand -a plot -d "Output SVG graphic showing service initialization"
complete -c systemd-analyze -n "__fish_use_subcommand" -a dot -d "Output dependency graph in dot(1) format" complete -c systemd-analyze -n __fish_use_subcommand -a dot -d "Output dependency graph in dot(1) format"
complete -c systemd-analyze -n "__fish_use_subcommand" -a unit-paths -d "List all directories from which unit files may be loaded" complete -c systemd-analyze -n __fish_use_subcommand -a unit-paths -d "List all directories from which unit files may be loaded"
complete -c systemd-analyze -n "__fish_use_subcommand" -a exit-status -d "List exit statuses along with their class" complete -c systemd-analyze -n __fish_use_subcommand -a exit-status -d "List exit statuses along with their class"
complete -c systemd-analyze -n "__fish_use_subcommand" -a capability -d "List Linux capabilities along with their numeric IDs" complete -c systemd-analyze -n __fish_use_subcommand -a capability -d "List Linux capabilities along with their numeric IDs"
complete -c systemd-analyze -n "__fish_use_subcommand" -a condition -d "Evaluate Condition and Assert assignments" complete -c systemd-analyze -n __fish_use_subcommand -a condition -d "Evaluate Condition and Assert assignments"
complete -c systemd-analyze -n "__fish_use_subcommand" -a syscall-filter -d "List system calls contained in the specified system call set" complete -c systemd-analyze -n __fish_use_subcommand -a syscall-filter -d "List system calls contained in the specified system call set"
complete -c systemd-analyze -n "__fish_use_subcommand" -a calendar -d "Normalize repetitive calendar events and calculate when they elapse next" complete -c systemd-analyze -n __fish_use_subcommand -a calendar -d "Normalize repetitive calendar events and calculate when they elapse next"
complete -c systemd-analyze -n "__fish_use_subcommand" -a timestamp -d "Parse timestamp and output the normalized form" complete -c systemd-analyze -n __fish_use_subcommand -a timestamp -d "Parse timestamp and output the normalized form"
complete -c systemd-analyze -n "__fish_use_subcommand" -a timestamp -d "Parse time span and output the normalized form" complete -c systemd-analyze -n __fish_use_subcommand -a timestamp -d "Parse time span and output the normalized form"
complete -c systemd-analyze -n "__fish_use_subcommand" -a cat-config -d "Show contents of a config file" complete -c systemd-analyze -n __fish_use_subcommand -a cat-config -d "Show contents of a config file"
complete -c systemd-analyze -n "__fish_seen_subcommand_from cat-config" -F complete -c systemd-analyze -n "__fish_seen_subcommand_from cat-config" -F
complete -c systemd-analyze -n "__fish_use_subcommand" -a verify -d "Check unit files for correctness" complete -c systemd-analyze -n __fish_use_subcommand -a verify -d "Check unit files for correctness"
complete -c systemd-analyze -n "__fish_seen_subcommand_from verify" -F complete -c systemd-analyze -n "__fish_seen_subcommand_from verify" -F
complete -c systemd-analyze -n "__fish_use_subcommand" -a security -d "Analyze security settings of specified service units" complete -c systemd-analyze -n __fish_use_subcommand -a security -d "Analyze security settings of specified service units"
complete -c systemd-analyze -n "__fish_seen_subcommand_from security" -a "(__fish_systemctl_services)" complete -c systemd-analyze -n "__fish_seen_subcommand_from security" -a "(__fish_systemctl_services)"

View File

@ -3,6 +3,6 @@ complete -c wineboot -s e -l end-session -d 'End current session cleanly'
complete -c wineboot -s f -l force -d 'Force exit processes don\'t exit cleanly' complete -c wineboot -s f -l force -d 'Force exit processes don\'t exit cleanly'
complete -c wineboot -s i -l init -d 'Perform initialization for first Wine instance' complete -c wineboot -s i -l init -d 'Perform initialization for first Wine instance'
complete -c wineboot -s k -l kill -d 'Kill processes without cleanup' complete -c wineboot -s k -l kill -d 'Kill processes without cleanup'
complete -c wineboot -s r -l restart -d 'Restart' complete -c wineboot -s r -l restart -d Restart
complete -c wineboot -s s -l shutdown -d 'Shutdown' complete -c wineboot -s s -l shutdown -d Shutdown
complete -c wineboot -s u -l update -d 'Update wineprefix directory' complete -c wineboot -s u -l update -d 'Update wineprefix directory'

View File

@ -7,37 +7,37 @@ set -l listall "(__fish_print_xbps_packages)"
set -l listinstalled "(__fish_print_xbps_packages -i)" set -l listinstalled "(__fish_print_xbps_packages -i)"
function __fish_print_xbps_pkg_props function __fish_print_xbps_pkg_props
printf 'alternatives\tList of alternatives provided by the package\n' printf 'alternatives\tList of alternatives provided by the package\n'
printf 'architecture\tArchitecture of machine\n' printf 'architecture\tArchitecture of machine\n'
printf 'archive-compression-type\tType of archive\'s compression format\n' printf 'archive-compression-type\tType of archive\'s compression format\n'
printf 'automatic-install\tWas the package installed automatically\n' printf 'automatic-install\tWas the package installed automatically\n'
printf 'build-options\tOptions used to build the package\n' printf 'build-options\tOptions used to build the package\n'
printf 'conf_files\tList of provided system configuration files\n' printf 'conf_files\tList of provided system configuration files\n'
printf 'conflicts\tList of packages the package conflicts with\n' printf 'conflicts\tList of packages the package conflicts with\n'
printf 'filename-sha256\tFilename\'s sha256\n' printf 'filename-sha256\tFilename\'s sha256\n'
printf 'filename-size\tFilename\'s size\n' printf 'filename-size\tFilename\'s size\n'
printf 'homepage\tHomepage of the package\n' printf 'homepage\tHomepage of the package\n'
printf 'install-date\tDate the package was installed\n' printf 'install-date\tDate the package was installed\n'
printf 'install-msg\tMessage printed during installation\n' printf 'install-msg\tMessage printed during installation\n'
printf 'install-script\tPrint the package\'s install script\n' printf 'install-script\tPrint the package\'s install script\n'
printf 'installed_size\tSize of the package\n' printf 'installed_size\tSize of the package\n'
printf 'license\tLicense of the package\n' printf 'license\tLicense of the package\n'
printf 'maintainer\tMaintainer of the package\n' printf 'maintainer\tMaintainer of the package\n'
printf 'metafile-sha256\tMetafile\'s sha256\n' printf 'metafile-sha256\tMetafile\'s sha256\n'
printf 'pkgver\tThe package\'s name/version tuple\n' printf 'pkgver\tThe package\'s name/version tuple\n'
printf 'preserve\tWill files be preserved after update\n' printf 'preserve\tWill files be preserved after update\n'
printf 'provides\tList of virtual packages provided by the package\n' printf 'provides\tList of virtual packages provided by the package\n'
printf 'remove-msg\tMessage printed during removal\n' printf 'remove-msg\tMessage printed during removal\n'
printf 'remove-script\tPrint the package\'s removal script\n' printf 'remove-script\tPrint the package\'s removal script\n'
printf 'replaces\tList of packages the package replaces\n' printf 'replaces\tList of packages the package replaces\n'
printf 'repository\tRepo where package was downloaded from\n' printf 'repository\tRepo where package was downloaded from\n'
printf 'run_depends\tList of packages required to run the package\n' printf 'run_depends\tList of packages required to run the package\n'
printf 'reverts\tList of versions the package reverts\n' printf 'reverts\tList of versions the package reverts\n'
printf 'shlib-provides\tList of provided shared libraries\n' printf 'shlib-provides\tList of provided shared libraries\n'
printf 'shlib-requires\tList of required shared libraries\n' printf 'shlib-requires\tList of required shared libraries\n'
printf 'short_desc\tShort description of the package\n' printf 'short_desc\tShort description of the package\n'
printf 'source-revisions\tGit revision used to build the package\n' printf 'source-revisions\tGit revision used to build the package\n'
printf 'state\tState of the package\n' printf 'state\tState of the package\n'
end end
complete -c $progname -f complete -c $progname -f

View File

@ -17,125 +17,125 @@ function __fish_print_group_ids
end end
function __fish_complete_mount_opts function __fish_complete_mount_opts
set -l fish_mount_opts\ set -l fish_mount_opts \
async\t'Use asynchronous I/O'\ async\t'Use asynchronous I/O' \
atime\t'Update time on each access'\ atime\t'Update time on each access' \
noatime\t'Do not update time on each access'\ noatime\t'Do not update time on each access' \
auto\t'Mounted with'\ auto\t'Mounted with' \
noauto\t'Not mounted by -a'\ noauto\t'Not mounted by -a' \
defaults\t'Use default options'\ defaults\t'Use default options' \
dev\t'Interpret character/block special devices'\ dev\t'Interpret character/block special devices' \
nodev\t'Do not interpret character/block special devices'\ nodev\t'Do not interpret character/block special devices' \
diratime\t'Update directory inode access time'\ diratime\t'Update directory inode access time' \
nodiratime\t'Don\'t update directory inode access time'\ nodiratime\t'Don\'t update directory inode access time' \
dirsync\t'Use synchronous directory operations'\ dirsync\t'Use synchronous directory operations' \
exec\t'Permit executables'\ exec\t'Permit executables' \
noexec\t'Do not permit executables'\ noexec\t'Do not permit executables' \
group\t'Any user within device group may mount'\ group\t'Any user within device group may mount' \
iversion\t'Increment i_version field on inode modification'\ iversion\t'Increment i_version field on inode modification' \
noiversion\t'Don\'t increment i_version field on inode modification'\ noiversion\t'Don\'t increment i_version field on inode modification' \
mand\t'Allow mandatory locks'\ mand\t'Allow mandatory locks' \
nomand\t'Don\'t allow mandatory locks'\ nomand\t'Don\'t allow mandatory locks' \
_netdev\t'Filesystem uses network'\ _netdev\t'Filesystem uses network' \
nofail\t'Don\'t report errors'\ nofail\t'Don\'t report errors' \
relatime\t'Update inode access times'\ relatime\t'Update inode access times' \
norelatime\t'Don\'t update inode access times'\ norelatime\t'Don\'t update inode access times' \
strictatime\ strictatime \
nostrictatime\ nostrictatime \
lazytime\ lazytime \
nolazytime\ nolazytime \
suid\t'Allow suid bits'\ suid\t'Allow suid bits' \
nosuid\t'Ignore suid bits'\ nosuid\t'Ignore suid bits' \
silent\ silent \
loud\ loud \
owner\ owner \
remount\t'Remount read-only filesystem'\ remount\t'Remount read-only filesystem' \
ro\t'Mount read-only'\ ro\t'Mount read-only' \
rw\t'Mount read-write'\ rw\t'Mount read-write' \
sync\t'Use synchronous I/O'\ sync\t'Use synchronous I/O' \
user\t'Any user may mount'\ user\t'Any user may mount' \
nouser\t'Only root may mount'\ nouser\t'Only root may mount' \
users\t'Any user may mount and unmount'\ users\t'Any user may mount and unmount' \
protect\ protect \
usemp\ usemp \
verbose\ verbose \
{grp,no,usr,}quota\ {grp,no,usr,}quota \
autodefrag\ autodefrag \
compress\ compress \
compress-force\ compress-force \
degraded\ degraded \
discard\ discard \
enospc_debug\ enospc_debug \
flushoncommit\ flushoncommit \
inode_cache\ inode_cache \
context=\t'Set SELinux context'\ context=\t'Set SELinux context' \
uid=\ uid= \
gid=\ gid= \
ownmask=\ ownmask= \
othmask=\ othmask= \
setuid=\ setuid= \
setgid=\ setgid= \
mode=\ mode= \
prefix=\ prefix= \
volume=\ volume= \
reserved=\ reserved= \
root=\ root= \
bs=\ bs= \
alloc_start=\ alloc_start= \
check_int{,_data,_print,_mask}=\ check_int{,_data,_print,_mask}= \
commit=\ commit= \
compress=\ compress= \
compress-force=\ compress-force= \
device=\ device= \
fatal_errors=\ fatal_errors= \
max_inline=\ max_inline= \
metadata_ratio=\ metadata_ratio= \
noacl\ noacl \
nobarrier\ nobarrier \
nodatacow\ nodatacow \
nodatasum\ nodatasum \
notreelog\ notreelog \
recovery\ recovery \
rescan_uuid_tree\ rescan_uuid_tree \
skip_balance\ skip_balance \
nospace_cache\ nospace_cache \
clear_cache\ clear_cache \
ssd\ ssd \
nossd\ nossd \
ssd_spread\ ssd_spread \
subvol=\ subvol= \
subvolrootid=\ subvolrootid= \
thread_pool=\ thread_pool= \
user_subvol_rm_allowed\ user_subvol_rm_allowed \
acl\ acl \
noacl\ noacl \
bsddf\ bsddf \
minixdf\ minixdf \
check=none\ check=none \
nocheck\ nocheck \
debug\ debug \
errors={continue,remount-ro,panic}\ errors={continue,remount-ro,panic} \
grpid\ grpid \
bsdgroups\ bsdgroups \
bsdgroups\ bsdgroups \
bsdgroups\ bsdgroups \
nouid32\ nouid32 \
grpquota\ grpquota \
grpquota\ grpquota \
resgid=\ resgid= \
resuid=\ resuid= \
sb=\ sb= \
{user,nouser}_xattr\ {user,nouser}_xattr \
journal={update,unum}\ journal={update,unum} \
journal{_dev,_path}=\ journal{_dev,_path}= \
norecovery\ norecovery \
noload\ noload \
data={journal,ordered,writeback}\ data={journal,ordered,writeback} \
data_err={ignore,abort}\ data_err={ignore,abort} \
barrier={0,1}\ barrier={0,1} \
user_xattr\ user_xattr \
acl\ acl \
set -l token (commandline -tc | string replace -r '^-o' -- '') set -l token (commandline -tc | string replace -r '^-o' -- '')
set -l args (string split , -- $token) set -l args (string split , -- $token)
if test (count $args) -ne 0 if test (count $args) -ne 0

View File

@ -111,7 +111,7 @@ function fish_default_key_bindings -d "Default (Emacs-like) key bindings for fis
# term-specific special bindings # term-specific special bindings
switch "$TERM" switch "$TERM"
case 'st-256color' case st-256color
# suckless and bash/zsh/fish have a different approach to how the terminal should be configured; # suckless and bash/zsh/fish have a different approach to how the terminal should be configured;
# the major effect is that several keys do not work as intended. # the major effect is that several keys do not work as intended.
# This is a workaround, there will be additions in he future. # This is a workaround, there will be additions in he future.

View File

@ -611,7 +611,7 @@ function __fish_git_prompt_validate_colors --description "fish_git_prompt helper
end end
function __fish_git_prompt_reset -a type -a op -a var --description "Event handler, resets prompt when functionality changes" \ function __fish_git_prompt_reset -a type -a op -a var --description "Event handler, resets prompt when functionality changes" \
--on-variable=__fish_git_prompt_{repaint,describe_style,show_informative_status,use_informative_chars,showdirtystate,showstashstate,showuntrackedfiles,showupstream} --on-variable=__fish_git_prompt_{repaint,describe_style,show_informative_status,use_informative_chars,showdirtystate,showstashstate,showuntrackedfiles,showupstream}
if status --is-interactive if status --is-interactive
if contains -- $var __fish_git_prompt_show_informative_status __fish_git_prompt_use_informative_chars if contains -- $var __fish_git_prompt_show_informative_status __fish_git_prompt_use_informative_chars
# Clear characters that have different defaults with/without informative status # Clear characters that have different defaults with/without informative status
@ -623,7 +623,7 @@ function __fish_git_prompt_reset -a type -a op -a var --description "Event handl
end end
function __fish_git_prompt_reset_color -a type -a op -a var --description "Event handler, resets prompt when any color changes" \ function __fish_git_prompt_reset_color -a type -a op -a var --description "Event handler, resets prompt when any color changes" \
--on-variable=__fish_git_prompt_color{'',_prefix,_suffix,_bare,_merging,_cleanstate,_invalidstate,_upstream,_flags,_branch,_dirtystate,_stagedstate,_branch_detached,_stashstate,_untrackedfiles} --on-variable=__fish_git_prompt_showcolorhints --on-variable=__fish_git_prompt_color{'',_prefix,_suffix,_bare,_merging,_cleanstate,_invalidstate,_upstream,_flags,_branch,_dirtystate,_stagedstate,_branch_detached,_stashstate,_untrackedfiles} --on-variable=__fish_git_prompt_showcolorhints
if status --is-interactive if status --is-interactive
set -e _$var set -e _$var
set -e _{$var}_done set -e _{$var}_done
@ -636,7 +636,7 @@ function __fish_git_prompt_reset_color -a type -a op -a var --description "Event
end end
function __fish_git_prompt_reset_char -a type -a op -a var --description "Event handler, resets prompt when any char changes" \ function __fish_git_prompt_reset_char -a type -a op -a var --description "Event handler, resets prompt when any char changes" \
--on-variable=__fish_git_prompt_char_{cleanstate,dirtystate,invalidstate,stagedstate,stashstate,stateseparator,untrackedfiles,upstream_ahead,upstream_behind,upstream_diverged,upstream_equal,upstream_prefix} --on-variable=__fish_git_prompt_char_{cleanstate,dirtystate,invalidstate,stagedstate,stashstate,stateseparator,untrackedfiles,upstream_ahead,upstream_behind,upstream_diverged,upstream_equal,upstream_prefix}
if status --is-interactive if status --is-interactive
set -e ___fish_git_prompt_init set -e ___fish_git_prompt_init
set -e _$var set -e _$var

View File

@ -46,7 +46,7 @@ function fish_vi_cursor -d 'Set cursor shape for different vi modes'
and not set -q VTE_VERSION # which version is already checked above and not set -q VTE_VERSION # which version is already checked above
and not set -q WT_PROFILE_ID and not set -q WT_PROFILE_ID
and not set -q XTERM_VERSION and not set -q XTERM_VERSION
and not string match -q "Apple_Terminal" -- $TERM_PROGRAM and not string match -q Apple_Terminal -- $TERM_PROGRAM
and not string match -rq '^st(-.*)$' -- $TERM and not string match -rq '^st(-.*)$' -- $TERM
and not string match -q 'xterm-kitty*' -- $TERM and not string match -q 'xterm-kitty*' -- $TERM
and not string match -q 'rxvt*' -- $TERM and not string match -q 'rxvt*' -- $TERM

View File

@ -32,7 +32,7 @@ function funcsave --description "Save the current definition of all specified fu
and set -q _flag_quiet || printf (_ "%s: wrote %s\n") funcsave $funcpath and set -q _flag_quiet || printf (_ "%s: wrote %s\n") funcsave $funcpath
else if [ -w $funcpath ] else if [ -w $funcpath ]
rm $funcpath rm $funcpath
and set -q _flag_quiet || printf (_ "%s: removed %s\n") funcsave $funcpath and set -q _flag_quiet || printf (_ "%s: removed %s\n") funcsave $funcpath
else else
printf (_ "%s: Unknown function '%s'\n") funcsave $funcname >&2 printf (_ "%s: Unknown function '%s'\n") funcsave $funcname >&2
set retval 1 set retval 1