2008-03-13 00:20:05 -04:00
|
|
|
! Generate a new factor.vim file for syntax highlighting
|
2009-01-10 21:13:31 -05:00
|
|
|
USING: html.templates html.templates.fhtml io.files io.pathnames ;
|
2008-03-13 00:20:05 -04:00
|
|
|
IN: editors.vim.generate-syntax
|
|
|
|
|
|
|
|
: generate-vim-syntax ( -- )
|
2008-04-15 07:10:08 -04:00
|
|
|
"misc/factor.vim.fgen" resource-path <fhtml>
|
2008-03-13 00:20:05 -04:00
|
|
|
"misc/factor.vim" resource-path
|
|
|
|
template-convert ;
|
|
|
|
|
|
|
|
MAIN: generate-vim-syntax
|