blob: 93f31d4193fc24ad13854d05a0e23ee473fb541f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# cargo-ctags
[](https://travis-ci.org/urugang/cargo-ctags)
[](https://coveralls.io/github/urugang/cargo-ctags?branch=master)
## universal-ctags
install ctags from <https://github.com/universal-ctags/ctags.git>
## cargo-ctags
usage: cargo ctags [cargo metadata arguments] -- [ctags arguments]
```
~/codes/cargo-ctags $ cargo install cargo-ctags
~/codes/cargo-ctags $ cargo ctags -- -e # -e for emacs
~/codes/cargo-ctags $ ls -l TAGS
-rw-rw-r-- 1 urugang urugang 1415698 2017-05-31 08:13 TAGS
```
```
~/codes/cargo-ctags $ cargo ctags # default for vi
~/codes/cargo-ctags $ ls -l tags
-rw-rw-r-- 1 urugang urugang 1415698 2017-05-31 08:14 tagsc
```
## License
Licensed under either of
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
* MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
### Contribution
Unless you explicitly state otherwise, any contribution intentionally
submitted for inclusion in the work by you, as defined in the
Apache-2.0 license, shall be dual licensed as above, without any
additional terms or conditions.
|