14 lines
		
	
	
		
			272 B
		
	
	
	
		
			Factor
		
	
	
		
		
			
		
	
	
			14 lines
		
	
	
		
			272 B
		
	
	
	
		
			Factor
		
	
	
| 
								 | 
							
								USING: definitions io.launcher kernel math math.parser parser
							 | 
						||
| 
								 | 
							
								namespaces prettyprint editors make ;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								IN: editors.macvim
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								: macvim-location ( file line -- )
							 | 
						||
| 
								 | 
							
								    drop
							 | 
						||
| 
								 | 
							
								    [ "open" , "-a" , "MacVim", , ] { } make
							 | 
						||
| 
								 | 
							
								    try-process ;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								[ macvim-location ] edit-hook set-global
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 |