mirror of
https://github.com/zsh-users/zsh-autosuggestions.git
synced 2025-12-08 15:32:31 +01:00
Need to prevent zpty feature detection from HUPing existing zptys
This commit is contained in:
parent
c959408305
commit
c4bfd8e2c6
3 changed files with 8 additions and 9 deletions
|
|
@ -1,11 +1,10 @@
|
|||
describe 'a running zpty command' do
|
||||
it 'is not affected by running zsh-autosuggestions' do
|
||||
session.run_command('zmodload zsh/zpty')
|
||||
session.run_command('zpty -b kitty cat')
|
||||
session.run_command('zpty -w kitty cat')
|
||||
sleep 1
|
||||
session.run_command('zpty -r kitty')
|
||||
let(:before_sourcing) { -> { session.run_command('zmodload zsh/zpty && zpty -b kitty cat') } }
|
||||
|
||||
wait_for(session.content).to end_with("\ncat")
|
||||
it 'is not affected by running zsh-autosuggestions' do
|
||||
sleep 1 # Give a little time for precmd hooks to run
|
||||
session.run_command('zpty -t kitty; echo $?')
|
||||
|
||||
wait_for(session.content).to end_with("\n0")
|
||||
end
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue