Back out "Allow if/then/fi, while/do/done and for/do/done"

This backs out commit e32572e4e6.
This commit is contained in:
Johannes Altmanninger
2025-01-19 18:49:05 +01:00
parent 5b0622cf00
commit 92bd366c1b
9 changed files with 11 additions and 141 deletions

View File

@@ -614,12 +614,3 @@ echo 'echo "foo" "bar"' > $tmpdir/indent_test.fish
$fish_indent --write $tmpdir/indent_test.fish
cat $tmpdir/indent_test.fish
# CHECK: echo foo bar
# TODO: We should not force the line break.
echo 'if true; then
echo body
fi' | $fish_indent
# CHECK: if true
# CHECK: then
# CHECK: {{ }}echo body
# CHECK: fi