repo.or.cz
/
factor
/
jcg.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
remove math.blas.syntax and merge parsing words into math.blas.vectors/matrices
[factor/jcg.git]
/
basis
/
editors
/
macvim
/
macvim.factor
blob
b5f864dcd0791f9fb8b352ebf111cb63dba9ad5f
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