Reindent functions to remove useless quotes

This does not include checks/function.fish because that currently
includes a "; end" in a message that indent would remove, breaking the test.
This commit is contained in:
Fabian Homborg
2020-03-09 19:36:12 +01:00
parent 6deef37c66
commit 9367d4ff71
307 changed files with 5259 additions and 5061 deletions

View File

@@ -11,8 +11,8 @@ end
# The `fish_opt` command.
function fish_opt -d 'Produce an option specification suitable for use with `argparse`.'
set -l options 'h/help' 's/short=' 'l/long=' 'o/optional-val' 'r/required-val'
set options $options 'L-long-only' 'M-multiple-vals'
set -l options h/help 's/short=' 'l/long=' o/optional-val r/required-val
set options $options L-long-only M-multiple-vals
argparse -n fish_opt --max-args=0 --exclusive=r,o --exclusive=M,o $options -- $argv
or return