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,14 @@
describe 'with `AUTO_CD` option set' do
let(:after_sourcing) do
-> {
session.run_command('setopt AUTO_CD')
session.run_command('autoload compinit && compinit')
}
end
it 'directory names are still completed' do
session.send_string('sr')
session.send_keys('C-i')
wait_for { session.content }.to eq('src/')
end
end