https://github.com/mislav/cstags
ctags generator for CoffeeScript files
https://github.com/mislav/cstags
Last synced: 9 months ago
JSON representation
ctags generator for CoffeeScript files
- Host: GitHub
- URL: https://github.com/mislav/cstags
- Owner: mislav
- Archived: true
- Created: 2013-08-27T14:55:27.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2013-09-05T23:38:39.000Z (over 12 years ago)
- Last Synced: 2025-08-28T09:55:25.230Z (9 months ago)
- Language: CoffeeScript
- Homepage:
- Size: 117 KB
- Stars: 8
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# CoffeeScript ctags generator
Traverses the CoffeeScript AST to find function/class definitions and generate
Vim-compatible tags output.
Installation:
```sh
# clone this project and:
npm install
# symlink the command to somewhere in your PATH:
ln -s $PWD/bin/cstags ~/bin/cstags
```
Example usage:
```sh
# dump tags for all *.(lit)coffee files in the current project
cstags
# parse only specific files
cstags src/my.coffee
# traverse only specific directories
cstags src app/assets
# write tags to file
cstags -f .git/tags
```