소스 검색

Don't fetch suggestions after copy-earlier-word

Like {up,down}-line-or-beginning-search, this widget relies on
`$LASTWIDGET` being set to function correctly on subsequent invocations.

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.
fixes/copy-earlier-word
Henré Botha 5 년 전
committed by Eric Freese
부모
커밋
15bcfd7126
3개의 변경된 파일25개의 추가작업 그리고 0개의 파일을 삭제
  1. +23
    -0
      spec/async_spec.rb
  2. +1
    -0
      src/config.zsh
  3. +1
    -0
      zsh-autosuggestions.zsh

+ 23
- 0
spec/async_spec.rb 파일 보기

@ -27,6 +27,29 @@ context 'with asynchronous suggestions enabled' do
end
end
describe '`copy-earlier-word`' do
let(:before_sourcing) do
-> do
session.
run_command('autoload -Uz copy-earlier-word').
run_command('zle -N copy-earlier-word').
run_command('bindkey "^N" copy-earlier-word')
end
end
it 'should cycle through previous words in the buffer' do
session.clear_screen
session.send_string('foo bar baz')
sleep 0.5
session.send_keys('C-n')
wait_for { session.content }.to eq('foo bar bazbaz')
session.send_keys('C-n')
wait_for { session.content }.to eq('foo bar bazbar')
session.send_keys('C-n')
wait_for { session.content }.to eq('foo bar bazfoo')
end
end
describe 'pressing ^C after fetching a suggestion' do
before do
skip 'Workaround does not work below v5.0.8' if session.zsh_version < Gem::Version.new('5.0.8')

+ 1
- 0
src/config.zsh 파일 보기

@ -35,6 +35,7 @@ typeset -g ZSH_AUTOSUGGEST_ORIGINAL_WIDGET_PREFIX=autosuggest-orig-
up-line-or-history
down-line-or-history
accept-line
copy-earlier-word
)
}

+ 1
- 0
zsh-autosuggestions.zsh 파일 보기

@ -61,6 +61,7 @@ typeset -g ZSH_AUTOSUGGEST_ORIGINAL_WIDGET_PREFIX=autosuggest-orig-
up-line-or-history
down-line-or-history
accept-line
copy-earlier-word
)
}

불러오는 중...
취소
저장