You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 using flow.useNPMPackagedFlow option.
If you're using coc-tsserver, set javascript.validate.enable option to false, or completely disable tsserver extension by setting tsserver.enable to false.
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