mirror of
https://github.com/zsh-users/zsh-autosuggestions.git
synced 2024-11-18 09:51:06 +01:00
Revert "Merge pull request #439 from zsh-users/fixes/copy-earlier-word"
This reverts commit1c3e3fd939
, reversing changes made to733abd4af0
. This PR should have been merged to develop instead of master.
This commit is contained in:
parent
1c3e3fd939
commit
848aa741f4
3 changed files with 2 additions and 27 deletions
|
@ -27,29 +27,6 @@ context 'with asynchronous suggestions enabled' do
|
||||||
end
|
end
|
||||||
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
|
describe 'pressing ^C after fetching a suggestion' do
|
||||||
before do
|
before do
|
||||||
skip 'Workaround does not work below v5.0.8' if session.zsh_version < Gem::Version.new('5.0.8')
|
skip 'Workaround does not work below v5.0.8' if session.zsh_version < Gem::Version.new('5.0.8')
|
||||||
|
@ -57,9 +34,9 @@ context 'with asynchronous suggestions enabled' do
|
||||||
|
|
||||||
it 'terminates the prompt and begins a new one' do
|
it 'terminates the prompt and begins a new one' do
|
||||||
session.send_keys('e')
|
session.send_keys('e')
|
||||||
sleep 0.5
|
sleep 0.1
|
||||||
session.send_keys('C-c')
|
session.send_keys('C-c')
|
||||||
sleep 0.5
|
sleep 0.1
|
||||||
session.send_keys('echo')
|
session.send_keys('echo')
|
||||||
|
|
||||||
wait_for { session.content }.to eq("e\necho")
|
wait_for { session.content }.to eq("e\necho")
|
||||||
|
|
|
@ -35,7 +35,6 @@ typeset -g ZSH_AUTOSUGGEST_ORIGINAL_WIDGET_PREFIX=autosuggest-orig-
|
||||||
up-line-or-history
|
up-line-or-history
|
||||||
down-line-or-history
|
down-line-or-history
|
||||||
accept-line
|
accept-line
|
||||||
copy-earlier-word
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -71,7 +71,6 @@ typeset -g ZSH_AUTOSUGGEST_ORIGINAL_WIDGET_PREFIX=autosuggest-orig-
|
||||||
up-line-or-history
|
up-line-or-history
|
||||||
down-line-or-history
|
down-line-or-history
|
||||||
accept-line
|
accept-line
|
||||||
copy-earlier-word
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue