Creating ctags working with CSS

I recently started using Exuberant Ctags (along with vim) to create tag files. Only problem - ctags does not support CSS.

Is there a way to make ctags support CSS?

Googling around I basically found solutions suggesting I recompile ctags from scratch with added css support, but I'm on Windows, so compiling ctags is not very fun. Given that this is a fairly widely used program, I hope that there will be a better solution.

+3
source share
1 answer

Ctags expands with regular expressions in ~ / .ctags used for parsing language constructs. See Add support for a new language .

~/.vimrc taglist plugin.

+1

Source: https://habr.com/ru/post/1796482/


All Articles