diff options
| author | Huon Wilson <dbau.pp+github@gmail.com> | 2015-01-07 20:19:58 +1100 |
|---|---|---|
| committer | Huon Wilson <dbau.pp+github@gmail.com> | 2015-01-07 20:19:58 +1100 |
| commit | 6c7291ece47d0b263a3d3dadbda2ff7d034f705f (patch) | |
| tree | 3da4ad00c4ebdac5da9d7f3fc49261659b26a374 /src/etc/vim/syntax | |
| parent | 9e4e524e0eb17c8f463e731f23b544003e8709c6 (diff) | |
| download | rust-6c7291ece47d0b263a3d3dadbda2ff7d034f705f.tar.gz rust-6c7291ece47d0b263a3d3dadbda2ff7d034f705f.zip | |
Update editor syntax files for isize/usize.
Yay, syntax highlighting.
Diffstat (limited to 'src/etc/vim/syntax')
| -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 dce6d3f6687..678cb3e1602 100644 --- a/src/etc/vim/syntax/rust.vim +++ b/src/etc/vim/syntax/rust.vim @@ -59,7 +59,7 @@ syn match rustMacroVariable "$\w\+" syn keyword rustReservedKeyword alignof be do offsetof priv pure sizeof typeof unsized yield abstract final override macro " Built-in types {{{2 -syn keyword rustType int uint float char bool u8 u16 u32 u64 f32 +syn keyword rustType int isize uint usize float char bool u8 u16 u32 u64 f32 syn keyword rustType f64 i8 i16 i32 i64 str Self " Things from the prelude (src/libstd/prelude.rs) {{{2 |
