https://github.com/mislav/cstags
ctags generator for CoffeeScript files
https://github.com/mislav/cstags
Last synced: 6 months ago
JSON representation
ctags generator for CoffeeScript files
- Host: GitHub
- URL: https://github.com/mislav/cstags
- Owner: mislav
- Created: 2013-08-27T14:55:27.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-09-05T23:38:39.000Z (almost 12 years ago)
- Last Synced: 2024-12-24T00:12:44.971Z (6 months ago)
- Language: CoffeeScript
- Homepage:
- Size: 117 KB
- Stars: 8
- Watchers: 3
- 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
```