mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 07:34:32 +00:00
11 lines
397 B
Text
Executable file
11 lines
397 B
Text
Executable file
|
|
# Test that conditions that add or remove completions don't deadlock, etc.
|
|
# We actually encountered some case that was effectively like this (Issue 2 in github)
|
|
|
|
complete --command AAAA -l abcd --condition 'complete -c AAAA -l efgh'
|
|
complete -C'AAAA -'
|
|
complete -C'AAAA -'
|
|
|
|
complete --command BBBB -l abcd --condition 'complete -e --command BBBB -l abcd'
|
|
complete -C'BBBB -'
|
|
complete -C'BBBB -'
|