factor/libs/vim/vim.factor

19 lines
414 B
Factor
Raw Permalink Normal View History

2006-08-03 02:45:30 -04:00
IN: vim
USING: definitions io kernel namespaces parser prettyprint
process sequences ;
2006-08-03 02:45:30 -04:00
2006-10-20 17:55:52 -04:00
SYMBOL: vim-path
SYMBOL: vim-detach
2006-10-20 17:55:52 -04:00
"vim" vim-path set-global
: vim-command ( file line -- string )
[ "\"" % vim-path get % "\" \"" % swap % "\" +" % # ] "" make ;
2006-08-25 00:02:30 -04:00
: vim-location ( file line -- )
vim-command
vim-detach get-global
[ run-detached ] [ run-process ] if ;
2006-08-03 02:45:30 -04:00
2006-08-25 00:02:30 -04:00
[ vim-location ] edit-hook set-global