mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-24 22:25:58 +08:00
1e858eae35
This demonstrates that we only write control sequences when interactive.
12 lines
349 B
Fish
12 lines
349 B
Fish
#RUN: %fish -C 'set -l fish %fish' %s
|
|
# Test all completions where the command exists
|
|
|
|
# No output is good output
|
|
for f in $__fish_data_dir/completions/*.fish
|
|
if type -q (string replace -r '.*/([^/]+).fish' '$1' $f)
|
|
set -l out (source $f 2>&1 | string collect)
|
|
test -n "$out"
|
|
and echo -- OUTPUT from $f: $out
|
|
end
|
|
end
|