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.

53 lines
1.7 KiB
Plaintext

*vim-flow.txt*
*vim-flow*
==============================================================================
CONTENTS *vim-flow-contents*
Variables |vim-flow-variables|
------------------------------------------------------------------------------
VARIABLES *vim-flow-variables*
g:flow#autoclose *g:flow#autoclose*
If this is set to 1, the |quickfix| window opened when the plugin finds an error
will close automatically.
Default is 0.
g:flow#enable *g:flow#enable*
Typechecking is done automatically on :w if set to 1.
To disable this, set to 0 in your ~/.vimrc, like so:
let g:flow#enable = 0
Default is 1.
g:flow#errjmp *g:flow#errjmp*
Jump to errors after typechecking if set to 1.
Default is 0.
g:flow#flowpath *g:flow#flowpath*
Leave this as default to use the flow executable defined on your path. To use
a custom flow executable, set this like so:
let g:flow#flowpath = /your/flow-path/flow
g:flow#omnifunc *g:flow#omnifunc*
By default 'omnifunc' will be set to provide omni completion. To disable it
(prevent overwriting an existed omnifunc), set this value to 0:
let g:flow#omnifunc = 0
g:flow#qfsize *g:flow#qfsize*
Leave this as default to let the plugin decide on the |quickfix| window size.
vim:tw=78:ts=8:ft=help:norl: