diff options
| author | Ben Blum <bblum@andrew.cmu.edu> | 2013-08-22 17:00:02 -0400 |
|---|---|---|
| committer | Ben Blum <bblum@andrew.cmu.edu> | 2013-08-23 17:24:14 -0400 |
| commit | e9f6f3f2ccf563b39f7484025c8272da60c24dfa (patch) | |
| tree | 42e2f6b59b1972cbfe75ec69d14aa97fbbb478a9 /src/etc/vim | |
| parent | 2c0f9bd35493def5e23f0f43ddeba54da9d788b4 (diff) | |
| download | rust-e9f6f3f2ccf563b39f7484025c8272da60c24dfa.tar.gz rust-e9f6f3f2ccf563b39f7484025c8272da60c24dfa.zip | |
Parse and reserve typeof keyword. #3228
Diffstat (limited to 'src/etc/vim')
| -rw-r--r-- | src/etc/vim/syntax/rust.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/etc/vim/syntax/rust.vim b/src/etc/vim/syntax/rust.vim index 260b23cb70b..b5e52939635 100644 --- a/src/etc/vim/syntax/rust.vim +++ b/src/etc/vim/syntax/rust.vim @@ -33,7 +33,7 @@ syn match rustIdentifier contains=rustIdentifierPrime "\%([^[:cntrl:][:spac syn match rustFuncName "\%([^[:cntrl:][:space:][:punct:][:digit:]]\|_\)\%([^[:cntrl:][:punct:][:space:]]\|_\)*" display contained " reserved -syn keyword rustKeyword be +syn keyword rustKeyword be yield typeof syn keyword rustType int uint float char bool u8 u16 u32 u64 f32 syn keyword rustType f64 i8 i16 i32 i64 str Self |
