11 lines
		
	
	
		
			275 B
		
	
	
	
		
			Factor
		
	
	
		
			Executable File
		
	
			
		
		
	
	
			11 lines
		
	
	
		
			275 B
		
	
	
	
		
			Factor
		
	
	
		
			Executable File
		
	
USING: definitions io.launcher kernel math math.parser parser
 | 
						|
namespaces prettyprint editors ;
 | 
						|
 | 
						|
IN: editors.textmate
 | 
						|
 | 
						|
: textmate-location ( file line -- )
 | 
						|
    [ "mate" , "-a" , "-l" , number>string , , ] { } make
 | 
						|
    try-process ;
 | 
						|
 | 
						|
[ textmate-location ] edit-hook set-global
 |