autosuggestions + new custom dir

This commit is contained in:
2020-03-10 12:08:47 +01:00
parent 590a2e11ee
commit e3e023417f
64 changed files with 3412 additions and 3 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