mirror of
				https://github.com/wting/autojump
				synced 2025-06-13 12:54:07 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			110 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			110 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
#compdef j
 | 
						|
cur=${words[2, -1]}
 | 
						|
 | 
						|
autojump --completion ${=cur[*]} | while read i; do
 | 
						|
    compadd -U "$i";
 | 
						|
done
 |