mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 12:04:39 +08:00
12 lines
397 B
Plaintext
Executable File
12 lines
397 B
Plaintext
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 -'
|