mirror of
https://github.com/zsh-users/zsh-autosuggestions.git
synced 2024-11-18 09:51:06 +01:00
14 lines
399 B
Ruby
14 lines
399 B
Ruby
describe 'rebinding [' do
|
|
context 'initialized before sourcing the plugin' do
|
|
before do
|
|
session.send_string("function [ { $commands[\\[] \"$@\" }")
|
|
session.send_keys("'enter'")
|
|
session.clear_screen
|
|
end
|
|
|
|
it 'executes the custom behavior and the built-in behavior' do
|
|
session.send_string('asdf')
|
|
wait_for { session.content }.to eq('asdf')
|
|
end
|
|
end
|
|
end
|