coc-flow
coc-flow copied to clipboard
Flow language server extension for coc.nvim
coc-flow
Flow language server extension for coc.nvim
.
Install
- Inside (neo)vim run this command:
:CocInstall coc-flow
Note: for coc installation instructions visit coc.nvim
repo
Setup
- Make sure you have
.flowconfig
inside your project root. - By default coc-flow looks for flow binary inside your node_modules (as flow recommends it), as fallback it uses
flow.pathToFlow
, you can toggle this behavior usingflow.useNPMPackagedFlow
option. - If you're using coc-tsserver, set
javascript.validate.enable
option tofalse
, or completely disable tsserver extension by settingtsserver.enable
tofalse
.
Features
- Code completion
- Go to definition
- Diagnostics
- Hover for type info
Configuration
-
flow.enable
(default:true
) Enable flow extension -
flow.pathToFlow
(default:flow
) Absolute path to flow binary -
flow.useNPMPackagedFlow
(default:true
) Use flow binary which exists in node_modules (recommended) -
flow.stopFlowOnExit
(default:true
) Stop flow server on exit -
flow.lazyMode
(default:''
) Which lazy mode to use, empty string will use lazy mode set in .flowconfig and any other value override that
License
MIT