summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorILyoan <ilyoan@gmail.com>2013-05-27 13:58:27 +0900
committerILyoan <ilyoan@gmail.com>2013-05-27 13:58:27 +0900
commit998cbbd7390c6472a5770687f93c7a18bf9dc59f (patch)
tree7a32d1eda38218648c83f8701ef500f5c7537e6b
parentf5d4ea84f5f38c230235a2bab142bfb55d6febdc (diff)
downloadrust-998cbbd7390c6472a5770687f93c7a18bf9dc59f.tar.gz
update ctags define
-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/