remove math.blas.syntax and merge parsing words into math.blas.vectors/matrices
[factor/jcg.git] / basis / editors / editpadlite / editpadlite.factor
blobd487ca776f81e72d90883c6fc9ec39a38649f1cc
1 USING: definitions kernel parser words sequences math.parser
2 namespaces editors io.launcher windows.shell32 io.files
3 io.directories.search.windows strings unicode.case make ;
4 IN: editors.editpadlite
6 : editpadlite-path ( -- path )
7     \ editpadlite-path get-global [
8         "JGsoft" t [ >lower "editpadlite.exe" tail? ] find-in-program-files
9         [ "editpadlite.exe" ] unless*
10     ] unless* ;
12 : editpadlite ( file line -- )
13     [
14         editpadlite-path , drop ,
15     ] { } make run-detached drop ;
17 [ editpadlite ] edit-hook set-global