fork from a cucumber/vscode
Cucumber extension for coc.nvim
vim-plug:
Plug 'Gee19/coc-cucumber', {'do': 'yarn install --frozen-lockfile'}
manually
git clone [email protected]:Gee19/coc-cucumber.git
cd ~/path/to/coc-cucumber
yarn && yarn build
Add the following to your vimrc:
set runtimepath^=~/path/to/coc-cucumber
The "filetype" must be cucumber
for this extension to work.
Install "cucumber" related plugin (e.g. tpope/vim-cucumber or sheerun/vim-polyglot).
Add the following to your coc-settings.json
:
"cucumber.enable": true,
"cucumber.glue": [
"cypress/integration/**/*.cucumber.ts"
],
"cucumber.features": [
"cypress/integration/**/*.feature"
],
Check the "contributes.configuration" section of package.json
.
- https://github.com/yaegassy
- https://github.com/cucumber/vscode
- https://github.com/cucumber/language-server
MIT
This extension is built with create-coc-extension