mirror of
				https://github.com/zsh-users/zsh-autosuggestions.git
				synced 2024-05-11 05:54:57 +00:00 
			
		
		
		
	Respect user's set options when running original widget
Fixes GitHub #379
This commit is contained in:
		
							
								
								
									
										14
									
								
								spec/integrations/auto_cd_spec.rb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										14
									
								
								spec/integrations/auto_cd_spec.rb
									
									
									
									
									
										Normal 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
 | 
			
		||||
							
								
								
									
										12
									
								
								spec/integrations/glob_subst_spec.rb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								spec/integrations/glob_subst_spec.rb
									
									
									
									
									
										Normal 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
 | 
			
		||||
		Reference in New Issue
	
	Block a user