vim updates

erg 2006-10-20 22:25:07 +00:00
parent 6a19529750
commit 618a680556
2 changed files with 14 additions and 0 deletions

View File

@ -1,5 +1,6 @@
REQUIRES: contrib/httpd contrib/process ;
PROVIDE: contrib/vim {
"vim.factor"
"vim.facts"
} ;

13
contrib/vim/vim.facts Normal file
View File

@ -0,0 +1,13 @@
IN: vim
USING: definitions help io words ;
ARTICLE: { "vim" "vim" } "Vim support"
"This module makes the " { $link edit } " word work with Vim. The "
{ $link vim-path } " variable contains the name of the vim executable. The default " { $link vim-path } " is \"vim\". For Windows, place the following example .factor-boot-rc in the directory returned by " { $link home } ":"
{ $code
"USING: modules namespaces ;"
"REQUIRES: contrib/vim ;"
"USE: vim"
"\"d:\\program files\\vim\\vim70\\gvim\" vim-path set-global"
} ;