Merge branch 'master' of git://factorcode.org/git/factor
[factor/jcg.git] / basis / editors / notepadpp / notepadpp.factor
blob1c856bd7615273388c5425a8ccf24c970e5ee741
1 USING: editors io.files io.launcher kernel math.parser
2 namespaces sequences io.directories.search.windows make ;
3 IN: editors.notepadpp
5 : notepadpp-path ( -- path )
6     \ notepadpp-path get-global [
7         "notepad++" t [ "notepad++.exe" tail? ] find-in-program-files
8         [ "notepad++.exe" ] unless*
9     ] unless* ;
11 : notepadpp ( file line -- )
12     [
13         notepadpp-path ,
14         "-n" swap number>string append , ,
15     ] { } make run-detached drop ;
17 [ notepadpp ] edit-hook set-global