18 lines
		
	
	
		
			500 B
		
	
	
	
		
			Factor
		
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			500 B
		
	
	
	
		
			Factor
		
	
	
| USING: editors io.files io.launcher kernel math.parser
 | |
| namespaces sequences io.directories.search.windows make ;
 | |
| IN: editors.ted-notepad
 | |
| 
 | |
| : ted-notepad-path ( -- path )
 | |
|     \ ted-notepad-path get-global [
 | |
|         "TED Notepad" [ "TedNPad.exe" tail? ] find-in-program-files
 | |
|         [ "TedNPad.exe" ] unless*
 | |
|     ] unless* ;
 | |
| 
 | |
| : ted-notepad ( file line -- )
 | |
|     [
 | |
|         ted-notepad-path ,
 | |
|         number>string "/l" prepend , ,
 | |
|     ] { } make run-detached drop ;
 | |
| 
 | |
| [ ted-notepad ] edit-hook set-global
 |