neoclide / coc-highlight

Document highlight and document colors LSP support for coc.nvim
221 stars 12 forks source link

feat(server): Add support for float values HSL #46

Closed Varal7 closed 3 years ago

Varal7 commented 3 years ago
image

Fixes #24

Varal7 commented 3 years ago

Btw, what is the recommended workflow for developing coc extensions? Here, I cloned the repo and symlinked it to .config/coc/extensions, then used yarn build at every change. Is there a better way?

chemzqm commented 3 years ago

I cloned the repo and symlinked it to .config/coc/extensions

Or you can use set runtimepath^=/path/to/extension in your vimrc.

You can use ./node_modules/.bin/webpack -w to make webpack rebuild files on change.

Checkout :h :CocWatch for automatic reload extension.