Is there any way (or plugin) for Vim to generate code for CSS?

I tried to install taglist (but I could not install ctags), but I realized that it does not support css, is there any other way or plugin to do this work?

PS: I checked the ctags installation file, but I could not find any steps that would look like an installation guide.

he just says:

Installation Notes
==================

For non-Unix platforms, simple makefiles are provided:

    descrip.mms   For VMS using either DEC C or VAX C
    mk_bc3.mak    For MSDOS using Borland C/C++ 3.x
    mk_bc5.mak    For Win32 using Borland C++ 5.5
    mk_djg.mak    For MSDOS using DJGPP Gnu GCC (better to follow Unix install)
    mk_manx.mak   For Amiga using Aztec/Manx C 5.0
    mk_mingw.mak  For Win32 using MinGW
    mk_mpw.mak    For Macintosh using MPW
    mk_mvc.mak    For Win32 using Microsoft Visual C++
    mk_os2.mak    For OS/2 using GCC (EMX)
    mk_qdos.mak   For QDOS using C68
    mk_riscos.mak For RISC OS using the GCC SDK <http://hard-mofo.dsvr.net>
    mk_sas.mak    For Amiga using SAS/C

There is a fixed ctag.exe. What should I do with this?

+5
source share
2 answers

. , , , , , .

+3

, ( ):

:set foldmethod=marker
:set foldmarker={,}

, :

#topbar {
    ....
}

:

+--  5 lines: body -----------------------
+-- 12 lines: #topbar --------------------
+--  4 lines: #topbar input --------------
+--  4 lines: #topbar li -----------------
....

. , .

+7

All Articles