]> gitweb.factorcode.org Git - factor.git/blob - basis/editors/macvim/macvim.factor
Fix permission bits
[factor.git] / basis / editors / macvim / macvim.factor
1 USING: definitions io.launcher kernel math math.parser parser
2 namespaces prettyprint editors make ;
3
4 IN: editors.macvim
5
6 : macvim-location ( file line -- )
7     drop
8     [ "open" , "-a" , "MacVim", , ] { } make
9     try-process ;
10
11 [ macvim-location ] edit-hook set-global
12
13