You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
260 B
VimL

" Vim filetype plugin
" Require the flow executable.
if !executable('flow')
finish
endif
" Omnicompletion.
if !exists("g:flow#omnifunc")
let g:flow#omnifunc = 1
endif
if exists('&omnifunc') && g:flow#omnifunc
setl omnifunc=flowcomplete#Complete
endif