diff options
author | Tyler Murphy <tylerm@tylerm.dev> | 2023-10-01 11:55:23 -0400 |
---|---|---|
committer | Tyler Murphy <tylerm@tylerm.dev> | 2023-10-01 11:55:23 -0400 |
commit | 6b5acbc8c00045a7926c2f295fb03ae4b0459305 (patch) | |
tree | c2df0f30d8eade2a2211b53c5a62a0bc71496045 /home-config/zsh/zsh-autosuggestions/spec/integrations/auto_cd_spec.rb | |
parent | package lavanda gtk theme (diff) | |
download | dotfiles-guix-6b5acbc8c00045a7926c2f295fb03ae4b0459305.tar.gz dotfiles-guix-6b5acbc8c00045a7926c2f295fb03ae4b0459305.tar.bz2 dotfiles-guix-6b5acbc8c00045a7926c2f295fb03ae4b0459305.zip |
package zsh-autosuggestions
Diffstat (limited to 'home-config/zsh/zsh-autosuggestions/spec/integrations/auto_cd_spec.rb')
-rw-r--r-- | home-config/zsh/zsh-autosuggestions/spec/integrations/auto_cd_spec.rb | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/home-config/zsh/zsh-autosuggestions/spec/integrations/auto_cd_spec.rb b/home-config/zsh/zsh-autosuggestions/spec/integrations/auto_cd_spec.rb deleted file mode 100644 index 94bd24b..0000000 --- a/home-config/zsh/zsh-autosuggestions/spec/integrations/auto_cd_spec.rb +++ /dev/null @@ -1,14 +0,0 @@ -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 |