diff options
author | Christian Duerr <chrisduerr@users.noreply.github.com> | 2019-04-01 22:41:20 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-01 22:41:20 +0000 |
commit | 6f4d1afcf88e275f4a6b8c73cfc904e3833d0dd0 (patch) | |
tree | bd2c870aea77c683e0725a59d1c8ce1f817dba7d /extra/completions/alacritty.fish | |
parent | 5523f64c6f939ced94d55c569f592320442e8eb9 (diff) | |
download | alacritty-6f4d1afcf88e275f4a6b8c73cfc904e3833d0dd0.tar.gz alacritty-6f4d1afcf88e275f4a6b8c73cfc904e3833d0dd0.zip |
Add official logov0.3.0-rc2
Diffstat (limited to 'extra/completions/alacritty.fish')
-rw-r--r-- | extra/completions/alacritty.fish | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/extra/completions/alacritty.fish b/extra/completions/alacritty.fish new file mode 100644 index 00000000..5f605349 --- /dev/null +++ b/extra/completions/alacritty.fish @@ -0,0 +1,80 @@ +# Meta +complete -c alacritty \ + -s "v" \ + -l "version" \ + -d "Prints version information" +complete -c alacritty \ + -s "h" \ + -l "help" \ + -d "Prints help information" + +# Config +complete -c alacritty \ + -l "live-config-reload" \ + -d "Enable automatic config reloading" +complete -c alacritty \ + -l "no-live-config-reload" \ + -d "Disable automatic config reloading" +complete -c alacritty \ + -l "persistent-logging" \ + -d "Keep the log file after quitting Alacritty" +complete -c alacritty \ + -f \ + -l "config-file" \ + -d "Specify an alternative config file" +complete -c alacritty \ + -l "title" \ + -d "Defines the window title" +complete -c alacritty \ + -x \ + -a '(__fish_complete_directories (commandline -ct))' \ + -l "working-directory" \ + -d "Start shell in specified directory" + +# Output +complete \ + -c alacritty \ + -l "print-events" \ + -d "Print all events to stdout" +complete \ + -c alacritty \ + -s "q" \ + -d "Reduces the level of verbosity (min is -qq)" +complete \ + -c alacritty \ + -s "qq" \ + -d "Reduces the level of verbosity" +complete \ + -c alacritty \ + -s "v" \ + -d "Increases the level of verbosity" +complete \ + -c alacritty \ + -s "vv" \ + -d "Increases the level of verbosity" +complete \ + -c alacritty \ + -s "vvv" \ + -d "Increases the level of verbosity" + +complete \ + -c alacritty \ + -l "ref-test" \ + -d "Generates ref test" + +complete \ + -c alacritty \ + -s "d" \ + -l "dimensions" \ + -d "Window dimensions <columns> <lines>" + +complete \ + -c alacritty \ + -l "position" \ + -d "Window position <x-pos> <y-pos>" + +complete \ + -c alacritty \ + -s "e" \ + -l "command" \ + -d "Execute command (must be last arg)" |