diff options
author | Jason <ammgws@users.noreply.github.com> | 2021-01-17 20:22:06 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-17 11:22:06 +0000 |
commit | 34435ed776988e765d9327dcedfe909e440e6bf8 (patch) | |
tree | 0d5cced80efe7effd27dde04bb477ee01543a15b /extra/completions/alacritty.fish | |
parent | 3ed9f9ac388d142c4ad9ebba3a9fe6e17ccc3b0e (diff) | |
download | alacritty-34435ed776988e765d9327dcedfe909e440e6bf8.tar.gz alacritty-34435ed776988e765d9327dcedfe909e440e6bf8.zip |
Update shell completions
This fixes the shell completion by removing the flags removed from the
CLI in 0768428 and adding the new options flag.
Diffstat (limited to 'extra/completions/alacritty.fish')
-rw-r--r-- | extra/completions/alacritty.fish | 24 |
1 files changed, 4 insertions, 20 deletions
diff --git a/extra/completions/alacritty.fish b/extra/completions/alacritty.fish index 4fb662d3..6f8da9b0 100644 --- a/extra/completions/alacritty.fish +++ b/extra/completions/alacritty.fish @@ -10,15 +10,6 @@ complete -c alacritty \ # 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" @@ -40,6 +31,10 @@ complete -c alacritty \ complete -c alacritty \ -l "hold" \ -d "Remain open after child process exits" +complete -c alacritty \ + -s "o" \ + -l "option" \ + -d "Override config file options" # Output complete \ @@ -74,17 +69,6 @@ complete \ 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)" |