mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 09:27:38 +00:00
a2b30053dc
So it can handle syntax changes that call for different formatting.
15 lines
309 B
Fish
15 lines
309 B
Fish
#RUN: %fish --features=ampersand-nobg-in-token -C 'set -g fish_indent %fish_indent' %s
|
|
|
|
echo no&background
|
|
# CHECK: no&background
|
|
|
|
echo background&
|
|
# CHECK: background
|
|
|
|
echo background &
|
|
# CHECK: background
|
|
|
|
wait
|
|
|
|
echo no&bg | fish_features=ampersand-nobg-in-token $fish_indent --check
|
|
echo $status #CHECK: 0
|