https://github.com/bnoordhuis/rtags
my ctags wrapper for rust code
https://github.com/bnoordhuis/rtags
ctags rust
Last synced: 8 months ago
JSON representation
my ctags wrapper for rust code
- Host: GitHub
- URL: https://github.com/bnoordhuis/rtags
- Owner: bnoordhuis
- Created: 2019-03-12T14:47:14.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-12T15:14:16.000Z (over 6 years ago)
- Last Synced: 2025-01-26T07:26:31.277Z (10 months ago)
- Topics: ctags, rust
- Language: Shell
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rtags
My `ctags` wrapper for Rust code. Shamelessly cribbed from other ctags wrappers.
I claim no copyright. :-)
## Usage
Put the `rtags` shell script on your path and execute the following commands
from the root of your project:
$ rtags -R .
$ cargo update
$ rtags -f $HOME/rust.tags -R $HOME/.cargo/registry/src/*/*/src
Then add this stanza to your `.vimrc`:
set tags=tags,$HOME/rust.tags
Now `^]` and `g]` will list definitions from your own project and your
dependencies.
## Notes
`rtags -e` should emit Emacs-compatible tag files although I've never tried. :-)