diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-06-16 16:58:17 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-06-16 16:58:17 -0700 |
| commit | 33242578331ab6e22384f686d930780d7fdf27e5 (patch) | |
| tree | 361ef9054b679b74749195fe061ec15938fb16aa /src/etc/vim/syntax | |
| parent | 0973eb4419d0598c1134106adef2ee8dc2a2b5ff (diff) | |
| download | rust-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')
| -rw-r--r-- | src/etc/vim/syntax/rust.vim | 3 |
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 |
