Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/XuJiandong/lua-ctags
By parsing output from luac program, generate tags file.
https://github.com/XuJiandong/lua-ctags
Last synced: 29 days ago
JSON representation
By parsing output from luac program, generate tags file.
- Host: GitHub
- URL: https://github.com/XuJiandong/lua-ctags
- Owner: XuJiandong
- Created: 2012-05-20T10:46:06.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-06-17T09:33:53.000Z (over 12 years ago)
- Last Synced: 2024-11-14T23:24:55.495Z (about 1 month ago)
- Language: Lua
- Size: 91.8 KB
- Stars: 14
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
By parsing output from luac program, generate tags file.
The result is better than files from ctags.Note: the nested functions and anonymous functions are removed.
Sample usage:
One file:
> lua lua_tags.lua ../test/simple.lua > tagsMore files:
> lua lua_tags.lua ../test/simple.lua ../test/more_functions.lua > tags
> lua lua_tags.lua ../test/*.lua > tagsCheck if it works:
> lua lua_tags test