mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-24 17:12:50 +08:00
1e858eae35
This demonstrates that we only write control sequences when interactive.
17 lines
473 B
Fish
17 lines
473 B
Fish
#RUN: %fish %s
|
|
|
|
prompt_pwd -d 1 /foo/bar/baz
|
|
# CHECK: /f/b/baz
|
|
|
|
prompt_pwd /usr/share/fish/tools/web_config/sample_prompts
|
|
# CHECK: /u/s/f/t/w/sample_prompts
|
|
|
|
prompt_pwd -D 2 /usr/share/fish/tools/web_config/sample_prompts
|
|
# CHECK: /u/s/f/t/web_config/sample_prompts
|
|
|
|
prompt_pwd -D 0 /usr/share/fish/tools/web_config/sample_prompts
|
|
# CHECK: /u/s/f/t/w/s
|
|
|
|
prompt_pwd -d1 -D 3 /usr/share/fish/tools/web_config/-sample_prompts
|
|
# CHECK: /u/s/f/tools/web_config/-sample_prompts
|