factor/basis/editors/vim/generate-syntax/generate-syntax.factor

12 lines
324 B
Factor
Raw Normal View History

! Generate a new factor.vim file for syntax highlighting
2008-04-15 07:10:08 -04:00
USING: http.server.templating http.server.templating.fhtml
io.files ;
IN: editors.vim.generate-syntax
: generate-vim-syntax ( -- )
2008-04-15 07:10:08 -04:00
"misc/factor.vim.fgen" resource-path <fhtml>
"misc/factor.vim" resource-path
template-convert ;
MAIN: generate-vim-syntax