]> gitweb.factorcode.org Git - factor.git/blob - basis/editors/macvim/macvim.factor
Delete empty unit tests files, remove 1- and 1+, reorder IN: lines in a lot of places...
[factor.git] / basis / editors / macvim / macvim.factor
1 USING: definitions io.launcher kernel math math.parser parser
2 namespaces prettyprint editors make ;
3 IN: editors.macvim
4
5 : macvim ( file line -- )
6     drop
7     [ "open" , "-a" , "MacVim", , ] { } make
8     run-detached drop ;
9
10 [ macvim ] edit-hook set-global