10 lines
		
	
	
		
			288 B
		
	
	
	
		
			Factor
		
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			288 B
		
	
	
	
		
			Factor
		
	
	
USING: definitions io.launcher kernel math math.parser parser
 | 
						|
namespaces prettyprint editors make ;
 | 
						|
IN: editors.textmate
 | 
						|
 | 
						|
SINGLETON: textmate
 | 
						|
textmate editor-class set-global
 | 
						|
 | 
						|
M: textmate editor-command ( file line -- command )
 | 
						|
    [ "mate" , "-a" , "-l" , number>string , , ] { } make ;
 |