diff options
Diffstat (limited to 'home-config/zsh/zsh-autosuggestions/spec/widgets/toggle_spec.rb')
-rw-r--r-- | home-config/zsh/zsh-autosuggestions/spec/widgets/toggle_spec.rb | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/home-config/zsh/zsh-autosuggestions/spec/widgets/toggle_spec.rb b/home-config/zsh/zsh-autosuggestions/spec/widgets/toggle_spec.rb deleted file mode 100644 index 8f9f3c3..0000000 --- a/home-config/zsh/zsh-autosuggestions/spec/widgets/toggle_spec.rb +++ /dev/null @@ -1,26 +0,0 @@ -describe 'the `autosuggest-toggle` widget' do - before do - session.run_command('bindkey ^B autosuggest-toggle') - end - - it 'toggles suggestions' do - with_history('echo world', 'echo hello') do - session.send_string('echo') - wait_for { session.content }.to eq('echo hello') - - session.send_keys('C-b') - wait_for { session.content }.to eq('echo') - - session.send_string(' h') - sleep 1 - expect(session.content).to eq('echo h') - - session.send_keys('C-b') - wait_for { session.content }.to eq('echo hello') - - session.send_keys('C-h') - session.send_string('w') - wait_for { session.content }.to eq('echo world') - end - end -end |