diff options
| author | Keegan McAllister <kmcallister@mozilla.com> | 2015-01-02 13:39:05 -0800 |
|---|---|---|
| committer | Keegan McAllister <kmcallister@mozilla.com> | 2015-01-05 18:21:14 -0800 |
| commit | c9f0ff3813a662197e262e64edb8302d2b4a3e75 (patch) | |
| tree | 0533a040160c8def11c60c883bf9fcfea63399b3 /src/etc/vim/syntax/rust.vim | |
| parent | aa69cbde8279cd90457454c3b3f40a36e8a79dff (diff) | |
| download | rust-c9f0ff3813a662197e262e64edb8302d2b4a3e75.tar.gz rust-c9f0ff3813a662197e262e64edb8302d2b4a3e75.zip | |
Reserve the keyword 'macro'
Diffstat (limited to 'src/etc/vim/syntax/rust.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 5588152a244..270459e8880 100644 --- a/src/etc/vim/syntax/rust.vim +++ b/src/etc/vim/syntax/rust.vim @@ -56,7 +56,7 @@ syn match rustMacroRepeatCount ".\?[*+]" contained syn match rustMacroVariable "$\w\+" " Reserved (but not yet used) keywords {{{2 -syn keyword rustReservedKeyword alignof be do offsetof priv pure sizeof typeof unsized yield abstract final override +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 |
