mirror of
				https://github.com/ohmyzsh/ohmyzsh.git
				synced 2025-11-04 21:31:19 +08:00 
			
		
		
		
	fix(jake-node): support all Jakefile filenames in jake completion (#9589)
				
					
				
			This commit is contained in:
		
							parent
							
								
									3d51d63077
								
							
						
					
					
						commit
						6b8b6253d2
					
				@ -6,7 +6,7 @@
 | 
				
			|||||||
# Inspiration : https://weblog.rubyonrails.org/2006/3/9/fast-rake-task-completion-for-zsh
 | 
					# Inspiration : https://weblog.rubyonrails.org/2006/3/9/fast-rake-task-completion-for-zsh
 | 
				
			||||||
 | 
					
 | 
				
			||||||
function _jake () {
 | 
					function _jake () {
 | 
				
			||||||
  if [ -f Jakefile ]||[ -f jakefile ]; then
 | 
					  if [ -f Jakefile ] || [ -f jakefile ] || [ -f Jakefile.js ] || [ -f jakefile.js ]; then
 | 
				
			||||||
    compadd `jake -T | cut -d " " -f 2 | sed -E "s/.\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g"`
 | 
					    compadd `jake -T | cut -d " " -f 2 | sed -E "s/.\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g"`
 | 
				
			||||||
  fi
 | 
					  fi
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user