remove math.blas.syntax and merge parsing words into math.blas.vectors/matrices
[factor/jcg.git] / basis / editors / macvim / macvim.factor
blobb5f864dcd0791f9fb8b352ebf111cb63dba9ad5f
1 USING: definitions io.launcher kernel math math.parser parser
2 namespaces prettyprint editors make ;
4 IN: editors.macvim
6 : macvim-location ( file line -- )
7     drop
8     [ "open" , "-a" , "MacVim", , ] { } make
9     try-process ;
11 [ macvim-location ] edit-hook set-global