about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-05-27 02:41:12 -0700
committerbors <bors@rust-lang.org>2013-05-27 02:41:12 -0700
commita6b05b385adea5628ee01d4c958e18392f603872 (patch)
treeecf6af0e055785156837ece41b64ecd63ab60236 /src
parentfa67e091e440d234ac81b19733e22a5f522d53b6 (diff)
parent998cbbd7390c6472a5770687f93c7a18bf9dc59f (diff)
auto merge of #6761 : ILyoan/rust/ctags, r=thestinger
Diffstat (limited to 'src')
-rw-r--r--src/etc/ctags.rust4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/etc/ctags.rust b/src/etc/ctags.rust
index e08db63d0c9..4654116bc4d 100644
--- a/src/etc/ctags.rust
+++ b/src/etc/ctags.rust
@@ -4,9 +4,7 @@
 --regex-rust=/[ \t]*type[ \t]+([a-zA-Z0-9_]+)/\1/T,types/
 --regex-rust=/[ \t]*enum[ \t]+([a-zA-Z0-9_]+)/\1/T,types/
 --regex-rust=/[ \t]*struct[ \t]+([a-zA-Z0-9_]+)/\1/m,types/
---regex-rust=/[ \t]*class[ \t]+([a-zA-Z0-9_]+)/\1/m,types/
 --regex-rust=/[ \t]*mod[ \t]+([a-zA-Z0-9_]+)/\1/m,modules/
---regex-rust=/[ \t]*const[ \t]+([a-zA-Z0-9_]+)/\1/m,consts/
+--regex-rust=/[ \t]*static[ \t]+([a-zA-Z0-9_]+)/\1/m,consts/
 --regex-rust=/[ \t]*trait[ \t]+([a-zA-Z0-9_]+)/\1/m,traits/
 --regex-rust=/[ \t]*impl[ \t]+([a-zA-Z0-9_]+)/\1/m,impls/
---regex-rust=/[ \t]*impl[ \t]+of[ \t]([a-zA-Z0-9_]+)/\1/m,impls/