mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 05:37:36 +08:00
Run fish_indent on all non-test .fish files
This commit is contained in:
parent
37f385b193
commit
566a673e4f
|
@ -1089,4 +1089,3 @@ alias alias1020='something --arg1020'
|
|||
alias alias1021='something --arg1021'
|
||||
alias alias1022='something --arg1022'
|
||||
alias alias1023='something --arg1023'
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
for i in (seq 2000)
|
||||
command true
|
||||
end
|
||||
|
||||
|
|
|
@ -14,8 +14,7 @@ set -g whitelist \
|
|||
# unclear what this is \
|
||||
l_constinit \
|
||||
# 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.
|
||||
set -g nm_regex '^([^ ]+) ([dDbB])'
|
||||
|
@ -24,8 +23,7 @@ set -l total_globals 0
|
|||
set -l boring_files \
|
||||
fish_key_reader.cpp.o \
|
||||
fish_tests.cpp.o \
|
||||
fish_indent.cpp.o \
|
||||
|
||||
fish_indent.cpp.o
|
||||
|
||||
# return if we should ignore the given symbol name
|
||||
function should_ignore
|
||||
|
|
|
@ -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"
|
||||
|
||||
# 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 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 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 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 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 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 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 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 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 help -d "display help for command"
|
||||
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 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 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 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 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 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 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 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 apis -d "List, enable, or disable APIs"
|
||||
complete -f -c clasp -n __fish_use_subcommand -xa help -d "display help for command"
|
||||
|
||||
# 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'
|
||||
|
|
|
@ -6,15 +6,15 @@ complete -c dart -l enable-analytics -d "Enable analytics."
|
|||
complete -c dart -l disable-analytics -d "Disable analytics."
|
||||
|
||||
# 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 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 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 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 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 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 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 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 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 test -d "Run tests for a project."
|
||||
|
||||
# analyze
|
||||
complete -c dart -n '__fish_seen_subcommand_from analyze' -l fatal-infos -d 'Treat info level issues as fatal.'
|
||||
|
|
|
@ -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 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 deprecation-level -f -d 'Warn about deprecated features'
|
||||
complete -c elvish -s i -o json -d 'Show output in JSON'
|
||||
|
|
|
@ -19,7 +19,7 @@ function __fish_print_firewalld_helpers --description "Print list of predefined
|
|||
end
|
||||
|
||||
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
|
||||
|
||||
complete -c firewall-cmd -f
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
complete fish_config -f
|
||||
set -l prompt_commands choose 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" \
|
||||
-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" \
|
||||
|
@ -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'
|
||||
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 not __fish_seen_subcommand_from $theme_commands" \
|
||||
-a choose -d 'View and pick from the sample themes'
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
complete -c funcsave -d "save function(s) to disk"
|
||||
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 q -d "suppress output" -r
|
||||
complete -c funcsave -s q -d "suppress output" -r
|
||||
|
|
|
@ -23,8 +23,8 @@ function __fish_hashcat_device_types --description "Get hashcat device types"
|
|||
3\t'FPGA, DSP, Co-Processor'"
|
||||
end
|
||||
|
||||
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 m -l hash-type -xa "(__fish_hashcat_types)" -d Hash-type
|
||||
complete -c hashcat -s a -l attack-mode -d Attack-mode -xa "
|
||||
0\t'Straight'
|
||||
1\t'Combination'
|
||||
3\t'Brute-force'
|
||||
|
|
|
@ -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 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 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 log-stderr -d "log to screen instead of file"
|
||||
complete -c john -l no-loader-dupecheck -d "disable the dupe checking when loading hashes"
|
||||
|
|
|
@ -7,5 +7,5 @@
|
|||
# kmutil -h
|
||||
|
||||
if [ (command -v kmutil) = /usr/bin/kmutil ]
|
||||
command kmutil --generate-completion-script=fish | source
|
||||
command kmutil --generate-completion-script=fish | source
|
||||
end
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
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
|
||||
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
|
||||
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
|
||||
static stats temp-path threads tool-prefix verbose write-symbols,no-write-symbols no-opt'\
|
||||
-f -d 'Precompile CIL code to native code'
|
||||
static stats temp-path threads tool-prefix verbose write-symbols,no-write-symbols no-opt' \
|
||||
-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 debugger-agent -a 'address loglevel logfile server setpgid suspend
|
||||
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
|
||||
fcmov float32 gshared inline intrins linears leaf loop peephole precomp sched shared
|
||||
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 nollvm -d 'Don\'t use LLVM'
|
||||
complete -c mono -l gc -a 'sgen boehm' -f -d 'Specify garbage collector'
|
||||
|
|
|
@ -1,20 +1,20 @@
|
|||
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 "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 "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 "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 "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 "generate" -d "Create <schematic>"
|
||||
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 "new" -d "New workspace"
|
||||
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 "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 "version" -d "Display version"
|
||||
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 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 deploy -d "Deploy builder"
|
||||
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 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 generate -d "Create <schematic>"
|
||||
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 new -d "New workspace"
|
||||
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 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 version -d "Display version"
|
||||
|
|
|
@ -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 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 q -d "Quiet"
|
||||
complete -c ping -s q -d Quiet
|
||||
complete -c ping -s p -d "Payload pattern" -x
|
||||
|
||||
case '*'
|
||||
|
|
|
@ -1,17 +1,17 @@
|
|||
### subcommands
|
||||
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 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 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 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 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 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 help -d "Use \"ros help [command]\" for more information about a command."
|
||||
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 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 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 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 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 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 help -d "Use \"ros help [command]\" for more information about a command."
|
||||
|
||||
### help
|
||||
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' -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' -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' -l asdf -d 'use new asdf'
|
||||
complete -c ros -n '__fish_seen_subcommand_from run' -a +Q -d 'do not use quicklisp'
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
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 core -d "Use the specified core file instead of the default."
|
||||
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 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 tls-limit -d "Maximum number of thread-local symbols."
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
# checking the path is as expected is about as far as we're going with validation
|
||||
if [ (command -v shortcuts) = /usr/bin/shortcuts ]
|
||||
command shortcuts --generate-completion-script=fish | source
|
||||
command shortcuts --generate-completion-script=fish | source
|
||||
end
|
||||
|
||||
# output is like:
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
|
||||
function __fish_snap_no_subcommand -d 'Test if snap has yet to be given the subcommand'
|
||||
for i in (commandline -opc)
|
||||
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\
|
||||
revert run set tasks try unalias version watch
|
||||
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 \
|
||||
revert run set tasks try unalias version watch
|
||||
return 1
|
||||
end
|
||||
end
|
||||
|
@ -81,8 +81,8 @@ end
|
|||
|
||||
function __fish_snap_no_assertion -d 'Check that no assertion type is used yet'
|
||||
for i in (commandline -opc)
|
||||
if contains -- $i account account-key model serial snap-declaration snap-build snap-revision\
|
||||
system-user validation
|
||||
if contains -- $i account account-key model serial snap-declaration snap-build snap-revision \
|
||||
system-user validation
|
||||
return 1
|
||||
end
|
||||
end
|
||||
|
@ -102,8 +102,8 @@ function __fish_snap_assertion
|
|||
set -l assertion $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_assertion $assertion" -a "(__fish_snap_filters $assertion)"\
|
||||
-d Filter
|
||||
complete -f -c snap -n "__fish_snap_using_assertion $assertion" -a "(__fish_snap_filters $assertion)" \
|
||||
-d Filter
|
||||
end
|
||||
|
||||
function __fish_snap_filters -d 'List assertion filters'
|
||||
|
|
|
@ -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 q -l quiet -d 'Be quiet when setting values'
|
||||
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 -l deprecated -d 'Include deprecated parameters too'
|
||||
complete -c sysctl -s b -l binary -d 'Print value without new line'
|
||||
|
|
|
@ -27,29 +27,29 @@ complete -c systemd-analyze -l no-pager -d 'Do not pipe output into a pager'
|
|||
|
||||
# subcommands
|
||||
|
||||
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 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 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_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 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 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 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 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 time span and output the normalized form"
|
||||
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 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 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 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 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 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_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_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)"
|
||||
|
|
|
@ -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 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 r -l restart -d 'Restart'
|
||||
complete -c wineboot -s s -l shutdown -d 'Shutdown'
|
||||
complete -c wineboot -s r -l restart -d Restart
|
||||
complete -c wineboot -s s -l shutdown -d Shutdown
|
||||
complete -c wineboot -s u -l update -d 'Update wineprefix directory'
|
||||
|
|
|
@ -7,37 +7,37 @@ set -l listall "(__fish_print_xbps_packages)"
|
|||
set -l listinstalled "(__fish_print_xbps_packages -i)"
|
||||
|
||||
function __fish_print_xbps_pkg_props
|
||||
printf 'alternatives\tList of alternatives provided by the package\n'
|
||||
printf 'architecture\tArchitecture of machine\n'
|
||||
printf 'archive-compression-type\tType of archive\'s compression format\n'
|
||||
printf 'automatic-install\tWas the package installed automatically\n'
|
||||
printf 'build-options\tOptions used to build the package\n'
|
||||
printf 'conf_files\tList of provided system configuration files\n'
|
||||
printf 'conflicts\tList of packages the package conflicts with\n'
|
||||
printf 'filename-sha256\tFilename\'s sha256\n'
|
||||
printf 'filename-size\tFilename\'s size\n'
|
||||
printf 'homepage\tHomepage of the package\n'
|
||||
printf 'install-date\tDate the package was installed\n'
|
||||
printf 'install-msg\tMessage printed during installation\n'
|
||||
printf 'install-script\tPrint the package\'s install script\n'
|
||||
printf 'installed_size\tSize of the package\n'
|
||||
printf 'license\tLicense of the package\n'
|
||||
printf 'maintainer\tMaintainer of the package\n'
|
||||
printf 'metafile-sha256\tMetafile\'s sha256\n'
|
||||
printf 'pkgver\tThe package\'s name/version tuple\n'
|
||||
printf 'preserve\tWill files be preserved after update\n'
|
||||
printf 'provides\tList of virtual packages provided by the package\n'
|
||||
printf 'remove-msg\tMessage printed during removal\n'
|
||||
printf 'remove-script\tPrint the package\'s removal script\n'
|
||||
printf 'replaces\tList of packages the package replaces\n'
|
||||
printf 'repository\tRepo where package was downloaded from\n'
|
||||
printf 'run_depends\tList of packages required to run the package\n'
|
||||
printf 'reverts\tList of versions the package reverts\n'
|
||||
printf 'shlib-provides\tList of provided shared libraries\n'
|
||||
printf 'shlib-requires\tList of required shared libraries\n'
|
||||
printf 'short_desc\tShort description of the package\n'
|
||||
printf 'source-revisions\tGit revision used to build the package\n'
|
||||
printf 'state\tState of the package\n'
|
||||
printf 'alternatives\tList of alternatives provided by the package\n'
|
||||
printf 'architecture\tArchitecture of machine\n'
|
||||
printf 'archive-compression-type\tType of archive\'s compression format\n'
|
||||
printf 'automatic-install\tWas the package installed automatically\n'
|
||||
printf 'build-options\tOptions used to build the package\n'
|
||||
printf 'conf_files\tList of provided system configuration files\n'
|
||||
printf 'conflicts\tList of packages the package conflicts with\n'
|
||||
printf 'filename-sha256\tFilename\'s sha256\n'
|
||||
printf 'filename-size\tFilename\'s size\n'
|
||||
printf 'homepage\tHomepage of the package\n'
|
||||
printf 'install-date\tDate the package was installed\n'
|
||||
printf 'install-msg\tMessage printed during installation\n'
|
||||
printf 'install-script\tPrint the package\'s install script\n'
|
||||
printf 'installed_size\tSize of the package\n'
|
||||
printf 'license\tLicense of the package\n'
|
||||
printf 'maintainer\tMaintainer of the package\n'
|
||||
printf 'metafile-sha256\tMetafile\'s sha256\n'
|
||||
printf 'pkgver\tThe package\'s name/version tuple\n'
|
||||
printf 'preserve\tWill files be preserved after update\n'
|
||||
printf 'provides\tList of virtual packages provided by the package\n'
|
||||
printf 'remove-msg\tMessage printed during removal\n'
|
||||
printf 'remove-script\tPrint the package\'s removal script\n'
|
||||
printf 'replaces\tList of packages the package replaces\n'
|
||||
printf 'repository\tRepo where package was downloaded from\n'
|
||||
printf 'run_depends\tList of packages required to run the package\n'
|
||||
printf 'reverts\tList of versions the package reverts\n'
|
||||
printf 'shlib-provides\tList of provided shared libraries\n'
|
||||
printf 'shlib-requires\tList of required shared libraries\n'
|
||||
printf 'short_desc\tShort description of the package\n'
|
||||
printf 'source-revisions\tGit revision used to build the package\n'
|
||||
printf 'state\tState of the package\n'
|
||||
end
|
||||
|
||||
complete -c $progname -f
|
||||
|
|
|
@ -17,125 +17,125 @@ function __fish_print_group_ids
|
|||
end
|
||||
|
||||
function __fish_complete_mount_opts
|
||||
set -l fish_mount_opts\
|
||||
async\t'Use asynchronous I/O'\
|
||||
atime\t'Update time on each access'\
|
||||
noatime\t'Do not update time on each access'\
|
||||
auto\t'Mounted with'\
|
||||
noauto\t'Not mounted by -a'\
|
||||
defaults\t'Use default options'\
|
||||
dev\t'Interpret character/block special devices'\
|
||||
nodev\t'Do not interpret character/block special devices'\
|
||||
diratime\t'Update directory inode access time'\
|
||||
nodiratime\t'Don\'t update directory inode access time'\
|
||||
dirsync\t'Use synchronous directory operations'\
|
||||
exec\t'Permit executables'\
|
||||
noexec\t'Do not permit executables'\
|
||||
group\t'Any user within device group may mount'\
|
||||
iversion\t'Increment i_version field on inode modification'\
|
||||
noiversion\t'Don\'t increment i_version field on inode modification'\
|
||||
mand\t'Allow mandatory locks'\
|
||||
nomand\t'Don\'t allow mandatory locks'\
|
||||
_netdev\t'Filesystem uses network'\
|
||||
nofail\t'Don\'t report errors'\
|
||||
relatime\t'Update inode access times'\
|
||||
norelatime\t'Don\'t update inode access times'\
|
||||
strictatime\
|
||||
nostrictatime\
|
||||
lazytime\
|
||||
nolazytime\
|
||||
suid\t'Allow suid bits'\
|
||||
nosuid\t'Ignore suid bits'\
|
||||
silent\
|
||||
loud\
|
||||
owner\
|
||||
remount\t'Remount read-only filesystem'\
|
||||
ro\t'Mount read-only'\
|
||||
rw\t'Mount read-write'\
|
||||
sync\t'Use synchronous I/O'\
|
||||
user\t'Any user may mount'\
|
||||
nouser\t'Only root may mount'\
|
||||
users\t'Any user may mount and unmount'\
|
||||
protect\
|
||||
usemp\
|
||||
verbose\
|
||||
{grp,no,usr,}quota\
|
||||
autodefrag\
|
||||
compress\
|
||||
compress-force\
|
||||
degraded\
|
||||
discard\
|
||||
enospc_debug\
|
||||
flushoncommit\
|
||||
inode_cache\
|
||||
context=\t'Set SELinux context'\
|
||||
uid=\
|
||||
gid=\
|
||||
ownmask=\
|
||||
othmask=\
|
||||
setuid=\
|
||||
setgid=\
|
||||
mode=\
|
||||
prefix=\
|
||||
volume=\
|
||||
reserved=\
|
||||
root=\
|
||||
bs=\
|
||||
alloc_start=\
|
||||
check_int{,_data,_print,_mask}=\
|
||||
commit=\
|
||||
compress=\
|
||||
compress-force=\
|
||||
device=\
|
||||
fatal_errors=\
|
||||
max_inline=\
|
||||
metadata_ratio=\
|
||||
noacl\
|
||||
nobarrier\
|
||||
nodatacow\
|
||||
nodatasum\
|
||||
notreelog\
|
||||
recovery\
|
||||
rescan_uuid_tree\
|
||||
skip_balance\
|
||||
nospace_cache\
|
||||
clear_cache\
|
||||
ssd\
|
||||
nossd\
|
||||
ssd_spread\
|
||||
subvol=\
|
||||
subvolrootid=\
|
||||
thread_pool=\
|
||||
user_subvol_rm_allowed\
|
||||
acl\
|
||||
noacl\
|
||||
bsddf\
|
||||
minixdf\
|
||||
check=none\
|
||||
nocheck\
|
||||
debug\
|
||||
errors={continue,remount-ro,panic}\
|
||||
grpid\
|
||||
bsdgroups\
|
||||
bsdgroups\
|
||||
bsdgroups\
|
||||
nouid32\
|
||||
grpquota\
|
||||
grpquota\
|
||||
resgid=\
|
||||
resuid=\
|
||||
sb=\
|
||||
{user,nouser}_xattr\
|
||||
journal={update,unum}\
|
||||
journal{_dev,_path}=\
|
||||
norecovery\
|
||||
noload\
|
||||
data={journal,ordered,writeback}\
|
||||
data_err={ignore,abort}\
|
||||
barrier={0,1}\
|
||||
user_xattr\
|
||||
acl\
|
||||
set -l token (commandline -tc | string replace -r '^-o' -- '')
|
||||
set -l fish_mount_opts \
|
||||
async\t'Use asynchronous I/O' \
|
||||
atime\t'Update time on each access' \
|
||||
noatime\t'Do not update time on each access' \
|
||||
auto\t'Mounted with' \
|
||||
noauto\t'Not mounted by -a' \
|
||||
defaults\t'Use default options' \
|
||||
dev\t'Interpret character/block special devices' \
|
||||
nodev\t'Do not interpret character/block special devices' \
|
||||
diratime\t'Update directory inode access time' \
|
||||
nodiratime\t'Don\'t update directory inode access time' \
|
||||
dirsync\t'Use synchronous directory operations' \
|
||||
exec\t'Permit executables' \
|
||||
noexec\t'Do not permit executables' \
|
||||
group\t'Any user within device group may mount' \
|
||||
iversion\t'Increment i_version field on inode modification' \
|
||||
noiversion\t'Don\'t increment i_version field on inode modification' \
|
||||
mand\t'Allow mandatory locks' \
|
||||
nomand\t'Don\'t allow mandatory locks' \
|
||||
_netdev\t'Filesystem uses network' \
|
||||
nofail\t'Don\'t report errors' \
|
||||
relatime\t'Update inode access times' \
|
||||
norelatime\t'Don\'t update inode access times' \
|
||||
strictatime \
|
||||
nostrictatime \
|
||||
lazytime \
|
||||
nolazytime \
|
||||
suid\t'Allow suid bits' \
|
||||
nosuid\t'Ignore suid bits' \
|
||||
silent \
|
||||
loud \
|
||||
owner \
|
||||
remount\t'Remount read-only filesystem' \
|
||||
ro\t'Mount read-only' \
|
||||
rw\t'Mount read-write' \
|
||||
sync\t'Use synchronous I/O' \
|
||||
user\t'Any user may mount' \
|
||||
nouser\t'Only root may mount' \
|
||||
users\t'Any user may mount and unmount' \
|
||||
protect \
|
||||
usemp \
|
||||
verbose \
|
||||
{grp,no,usr,}quota \
|
||||
autodefrag \
|
||||
compress \
|
||||
compress-force \
|
||||
degraded \
|
||||
discard \
|
||||
enospc_debug \
|
||||
flushoncommit \
|
||||
inode_cache \
|
||||
context=\t'Set SELinux context' \
|
||||
uid= \
|
||||
gid= \
|
||||
ownmask= \
|
||||
othmask= \
|
||||
setuid= \
|
||||
setgid= \
|
||||
mode= \
|
||||
prefix= \
|
||||
volume= \
|
||||
reserved= \
|
||||
root= \
|
||||
bs= \
|
||||
alloc_start= \
|
||||
check_int{,_data,_print,_mask}= \
|
||||
commit= \
|
||||
compress= \
|
||||
compress-force= \
|
||||
device= \
|
||||
fatal_errors= \
|
||||
max_inline= \
|
||||
metadata_ratio= \
|
||||
noacl \
|
||||
nobarrier \
|
||||
nodatacow \
|
||||
nodatasum \
|
||||
notreelog \
|
||||
recovery \
|
||||
rescan_uuid_tree \
|
||||
skip_balance \
|
||||
nospace_cache \
|
||||
clear_cache \
|
||||
ssd \
|
||||
nossd \
|
||||
ssd_spread \
|
||||
subvol= \
|
||||
subvolrootid= \
|
||||
thread_pool= \
|
||||
user_subvol_rm_allowed \
|
||||
acl \
|
||||
noacl \
|
||||
bsddf \
|
||||
minixdf \
|
||||
check=none \
|
||||
nocheck \
|
||||
debug \
|
||||
errors={continue,remount-ro,panic} \
|
||||
grpid \
|
||||
bsdgroups \
|
||||
bsdgroups \
|
||||
bsdgroups \
|
||||
nouid32 \
|
||||
grpquota \
|
||||
grpquota \
|
||||
resgid= \
|
||||
resuid= \
|
||||
sb= \
|
||||
{user,nouser}_xattr \
|
||||
journal={update,unum} \
|
||||
journal{_dev,_path}= \
|
||||
norecovery \
|
||||
noload \
|
||||
data={journal,ordered,writeback} \
|
||||
data_err={ignore,abort} \
|
||||
barrier={0,1} \
|
||||
user_xattr \
|
||||
acl \
|
||||
set -l token (commandline -tc | string replace -r '^-o' -- '')
|
||||
set -l args (string split , -- $token)
|
||||
|
||||
if test (count $args) -ne 0
|
||||
|
|
|
@ -111,7 +111,7 @@ function fish_default_key_bindings -d "Default (Emacs-like) key bindings for fis
|
|||
|
||||
# term-specific special bindings
|
||||
switch "$TERM"
|
||||
case 'st-256color'
|
||||
case st-256color
|
||||
# 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.
|
||||
# This is a workaround, there will be additions in he future.
|
||||
|
|
|
@ -611,7 +611,7 @@ function __fish_git_prompt_validate_colors --description "fish_git_prompt helper
|
|||
end
|
||||
|
||||
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 contains -- $var __fish_git_prompt_show_informative_status __fish_git_prompt_use_informative_chars
|
||||
# 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
|
||||
|
||||
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
|
||||
set -e _$var
|
||||
set -e _{$var}_done
|
||||
|
@ -636,7 +636,7 @@ function __fish_git_prompt_reset_color -a type -a op -a var --description "Event
|
|||
end
|
||||
|
||||
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
|
||||
set -e ___fish_git_prompt_init
|
||||
set -e _$var
|
||||
|
|
|
@ -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 WT_PROFILE_ID
|
||||
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 -q 'xterm-kitty*' -- $TERM
|
||||
and not string match -q 'rxvt*' -- $TERM
|
||||
|
|
|
@ -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
|
||||
else if [ -w $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
|
||||
printf (_ "%s: Unknown function '%s'\n") funcsave $funcname >&2
|
||||
set retval 1
|
||||
|
|
Loading…
Reference in New Issue
Block a user