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
16 lines
260 B
VimL
8 years ago
|
" 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
|