Added zsh-autosuggestions

This commit is contained in:
alex 2024-05-22 22:10:58 +02:00 committed by GitHub
commit de5609fd5e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
53 changed files with 3307 additions and 0 deletions

View file

@ -0,0 +1,12 @@
describe 'with `GLOB_SUBST` option set' do
let(:after_sourcing) do
-> {
session.run_command('setopt GLOB_SUBST')
}
end
it 'error messages are not printed' do
session.send_string('[[')
wait_for { session.content }.to eq('[[')
end
end