about summary refs log tree commit diff
path: root/src/etc/vim/syntax/rust.vim
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-06-16 16:58:17 -0700
committerAlex Crichton <alex@alexcrichton.com>2014-06-16 16:58:17 -0700
commit33242578331ab6e22384f686d930780d7fdf27e5 (patch)
tree361ef9054b679b74749195fe061ec15938fb16aa /src/etc/vim/syntax/rust.vim
parent0973eb4419d0598c1134106adef2ee8dc2a2b5ff (diff)
downloadrust-33242578331ab6e22384f686d930780d7fdf27e5.tar.gz
rust-33242578331ab6e22384f686d930780d7fdf27e5.zip
rustc: Start accepting `*const T`
This does not yet change the compiler and libraries from `*T` to `*const T` as
it will require a snapshot to do so.

cc #7362
Diffstat (limited to 'src/etc/vim/syntax/rust.vim')
-rw-r--r--src/etc/vim/syntax/rust.vim3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/etc/vim/syntax/rust.vim b/src/etc/vim/syntax/rust.vim
index 77348335eb3..3696f1adc91 100644
--- a/src/etc/vim/syntax/rust.vim
+++ b/src/etc/vim/syntax/rust.vim
@@ -30,8 +30,7 @@ syn keyword   rustKeyword     unsafe virtual while
 syn keyword   rustKeyword     use nextgroup=rustModPath skipwhite skipempty
 " FIXME: Scoped impl's name is also fallen in this category
 syn keyword   rustKeyword     mod trait struct enum type nextgroup=rustIdentifier skipwhite skipempty
-syn keyword   rustStorage     mut ref static
-syn keyword   rustObsoleteStorage const
+syn keyword   rustStorage     mut ref static const
 
 syn keyword   rustInvalidBareKeyword crate