taginator
Version:
Creates 'tags' files for vim automatically in the background.
56 lines (51 loc) • 2.27 kB
text/jade
extends layout
block content
if (errors.length)
p There was a problem with your config file
code= configFile
| . Check your file or go to
a(href=github) the info page
| to read more about configuration. You must restart the app after you
| changed your configuration file.
each error in errors
p.error= error
if (warnings.length)
unless (errors.length)
p There was a problem with your config file
code= configFile
| . Check your file or go to
a(href=github) the info page
| to read more about configuration. You must restart the app after you
| changed your configuration file.
each warning in warnings
p.warning= warning
unless (errors.length)
h2 Configured projects:
.container.projects
if (!projects)
p No projects found in
code= configFile
else
each project in projects
.summary.well
h3= project.name
p The ctags programm will be called in
code= project.cwd
| with the input directories:
ul
each inputDir in project.inputDirs
li
code= inputDir
| and puts the generate tags in the
code= project.output
| file.
p Taginator will watch for changes of files which match these globs:
ul
each glob in project.globs
li
code= glob
p Only tags are generated for files which match these extensions:
ul
each extension in project.extensions
li
code= extension