mirror of
https://github.com/zsh-users/zsh-autosuggestions.git
synced 2024-11-18 09:51:06 +01:00
9cb0101512
See technique used in `fast-syntax-highlighting`:
- ca2e18bbc9
- http://www.zsh.org/mla/users/2018/msg00424.html
31 lines
815 B
Ruby
31 lines
815 B
Ruby
context 'with asynchronous suggestions enabled' do
|
|
let(:options) { ["ZSH_AUTOSUGGEST_USE_ASYNC="] }
|
|
|
|
describe '`up-line-or-beginning-search`' do
|
|
let(:before_sourcing) do
|
|
-> do
|
|
session.
|
|
run_command('autoload -U up-line-or-beginning-search').
|
|
run_command('zle -N up-line-or-beginning-search').
|
|
send_string('bindkey "').
|
|
send_keys('C-v').send_keys('up').
|
|
send_string('" up-line-or-beginning-search').
|
|
send_keys('enter')
|
|
end
|
|
end
|
|
|
|
it 'should show previous history entries' do
|
|
with_history(
|
|
'echo foo',
|
|
'echo bar',
|
|
'echo baz'
|
|
) do
|
|
session.clear_screen
|
|
3.times { session.send_keys('up') }
|
|
wait_for { session.content }.to eq("echo foo")
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
|