create-coc-extension
March 4, 2024 ยท View on GitHub
Create a coc extension quickly ๐
Usage
npx
npx create-coc-extension [extension-name]
# or
npm exec create-coc-extension [extension-name]
cd [extension-name]
npm install
npm run build
npm
npm create coc-extension [extension-name]
# or
npm init coc-extension [extension-name]
cd [extension-name]
npm install
npm run build
yarn
yarn create coc-extension [extension-name]
cd [extension-name]
yarn install
yarn run build
bun
bun create coc-extension [extension-name]
cd [extension-name]
bun install
bun run build
Example
cd ~/src
npx create-coc-extension coc-test
? project title: coc-test
? project description: coc-test extension
? author full name: Heyward Fann
? author email address: fannheyward@gmail.com
coc-test is created.
cd /Users/fannheyward/src/coc-test && npm i
then "set runtimepath^=/Users/fannheyward/src/coc-test" in vimrc/init.vim, and you will see "[coc.nvim] coc-test works!" notification.
:CocCommand coc-test.Commandfor commandcoc-test.enabledfor configurationTestCompletionItemfor completion
LICENSE
MIT