2017-02-28 19:18:21 +01:00
|
|
|
describe 'using `zle -U`' do
|
|
|
|
let(:before_sourcing) do
|
|
|
|
-> do
|
|
|
|
session.
|
2018-06-07 05:49:03 +02:00
|
|
|
run_command('_zsh_autosuggest_strategy_test() { sleep 1; _zsh_autosuggest_strategy_history "$1" }').
|
2017-02-28 19:18:21 +01:00
|
|
|
run_command('foo() { zle -U - "echo hello" }; zle -N foo; bindkey ^B foo')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
let(:options) { ['unset ZSH_AUTOSUGGEST_USE_ASYNC', 'ZSH_AUTOSUGGEST_STRATEGY=test'] }
|
|
|
|
|
2019-01-12 02:58:05 +01:00
|
|
|
it 'does not fetch a suggestion for every inserted character' do
|
|
|
|
skip 'KEYS_QUEUED_COUNT not supported below v5.4.0' if session.zsh_version < Gem::Version.new('5.4.0')
|
|
|
|
|
2017-02-28 19:18:21 +01:00
|
|
|
session.send_keys('C-b')
|
|
|
|
wait_for { session.content }.to eq('echo hello')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'shows a suggestion when the widget completes' do
|
|
|
|
with_history('echo hello world') do
|
|
|
|
session.send_keys('C-b')
|
|
|
|
wait_for { session.content(esc_seqs: true) }.to match(/\Aecho hello\e\[[0-9]+m world/)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|