mirror of
https://github.com/zsh-users/zsh-autosuggestions.git
synced 2024-11-18 09:51:06 +01:00
Don't fetch suggestions after [up,down]-line-or-beginning-search
These widgets rely on `$LASTWIDGET` being set to restore the cursor position. When asynchronous suggestions are enabled, and the widget triggers a suggestion to be fetched, `autosuggest-suggest` will be called and $LASTWIDGET will be set to it.
This commit is contained in:
parent
2202ed7bac
commit
3136700ccf
3 changed files with 31 additions and 0 deletions
27
spec/integrations/async_line_or_beginning_spec.rb
Normal file
27
spec/integrations/async_line_or_beginning_spec.rb
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
describe 'using up-line-or-beginning-search when async is enabled' do
|
||||||
|
let(:options) { ["ZSH_AUTOSUGGEST_USE_ASYNC="] }
|
||||||
|
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
|
||||||
|
|
|
@ -21,6 +21,8 @@ ZSH_AUTOSUGGEST_CLEAR_WIDGETS=(
|
||||||
history-beginning-search-backward
|
history-beginning-search-backward
|
||||||
history-substring-search-up
|
history-substring-search-up
|
||||||
history-substring-search-down
|
history-substring-search-down
|
||||||
|
up-line-or-beginning-search
|
||||||
|
down-line-or-beginning-search
|
||||||
up-line-or-history
|
up-line-or-history
|
||||||
down-line-or-history
|
down-line-or-history
|
||||||
accept-line
|
accept-line
|
||||||
|
|
|
@ -57,6 +57,8 @@ ZSH_AUTOSUGGEST_CLEAR_WIDGETS=(
|
||||||
history-beginning-search-backward
|
history-beginning-search-backward
|
||||||
history-substring-search-up
|
history-substring-search-up
|
||||||
history-substring-search-down
|
history-substring-search-down
|
||||||
|
up-line-or-beginning-search
|
||||||
|
down-line-or-beginning-search
|
||||||
up-line-or-history
|
up-line-or-history
|
||||||
down-line-or-history
|
down-line-or-history
|
||||||
accept-line
|
accept-line
|
||||||
|
|
Loading…
Reference in a new issue