reformat all fish scripts

I hate doing this but I am tired of touching a fish script as part of
some change and having `make style` radically change it. Which makes
editing fish scripts more painful than it needs to be. It is time to do
a wholesale reformatting of these scripts to conform to the documented
style as implemented by the `fish_indent` program.
This commit is contained in:
Kurtis Rader
2016-11-27 21:27:22 -08:00
parent 54a76bb9e5
commit 11a60c8374
161 changed files with 2638 additions and 2587 deletions

View File

@@ -1,5 +1,5 @@
function __fish_complete_subcommand -d "Complete subcommand" --no-scope-shadowing
set -l skip_next 1
function __fish_complete_subcommand -d "Complete subcommand" --no-scope-shadowing
set -l skip_next 1
set -l test
switch "$argv[1]"
case '--fcs-skip=*'
@@ -8,38 +8,38 @@ function __fish_complete_subcommand -d "Complete subcommand" --no-scope-shadowi
set -e argv[1]
end
set -l res ""
set -l had_cmd 0
set -l cmd (commandline -cop) (commandline -ct)
set -l res ""
set -l had_cmd 0
set -l cmd (commandline -cop) (commandline -ct)
for i in $cmd
for i in $cmd
if test $skip_next -gt 0
if test $skip_next -gt 0
set skip_next (math $skip_next - 1)
continue
end
continue
end
if test "$had_cmd" = 1
set res "$res $i"
else
if test "$had_cmd" = 1
set res "$res $i"
else
if contains -- $i $argv
set skip_next (math $skip_next + 1)
continue
end
if contains -- $i $argv
set skip_next (math $skip_next + 1)
continue
end
switch $i
case '-*'
case '*=*'
case '*'
switch $i
case '-*'
case '*=*'
case '*'
set had_cmd 1
set res $i
end
end
end
set had_cmd 1
set res $i
end
end
end
printf "%s\n" (complete -C$res)
printf "%s\n" (complete -C$res)
end