fish-shell/share
Fabian Homborg 69b464bc37 Run fish_indent on all our fish scripts
It's now good enough to do so.

We don't allow grid-alignment:

```fish
complete -c foo -s b -l barnanana -a '(something)'
complete -c foo -s z              -a '(something)'
```

becomes

```fish
complete -c foo -s b -l barnanana -a '(something)'
complete -c foo -s z -a '(something)'
```

It's just more trouble than it is worth.

The one part I'd change:

We align and/or'd parts of an if-condition with the in-block code:

```fish
if true
   and false
    dosomething
end
```

becomes

```fish
if true
    and false
    dosomething
end
```

but it's not used terribly much and if we ever fix it we can just
reindent.
2020-01-13 20:34:22 +01:00
..
completions Run fish_indent on all our fish scripts 2020-01-13 20:34:22 +01:00
functions Run fish_indent on all our fish scripts 2020-01-13 20:34:22 +01:00
groff workaround broken groff man page config 2016-10-19 13:43:04 -07:00
tools Run fish_indent on all our fish scripts 2020-01-13 20:34:22 +01:00
__fish_build_paths.fish.in Rename "snippets" to "conf" internally, and document them as snippets 2016-04-06 09:33:09 +08:00
config.fish Load vendor configuration from $XDG_DATA_DIRS/vendor_*.d 2020-01-12 16:12:41 +01:00
lynx.lss Install custom LSS script to /usr/local/share/fish on make install 2017-09-26 14:31:11 -05:00