Explorar el Código

Merge pull request #439 from zsh-users/fixes/copy-earlier-word

Don't fetch suggestions after copy-earlier-word
pull/445/head
Eric Freese hace 5 años
cometido por GitHub
padre
commit
1c3e3fd939
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 3 ficheros con 27 adiciones y 2 borrados
  1. +25
    -2
      spec/async_spec.rb
  2. +1
    -0
      src/config.zsh
  3. +1
    -0
      zsh-autosuggestions.zsh

+ 25
- 2
spec/async_spec.rb Ver fichero

@ -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')
@ -34,9 +57,9 @@ context 'with asynchronous suggestions enabled' do
it 'terminates the prompt and begins a new one' do
session.send_keys('e')
sleep 0.1
sleep 0.5
session.send_keys('C-c')
sleep 0.1
sleep 0.5
session.send_keys('echo')
wait_for { session.content }.to eq("e\necho")

+ 1
- 0
src/config.zsh Ver fichero

@ -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 Ver fichero

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

Cargando…
Cancelar
Guardar