diff options
| author | Ben Blum <bblum@andrew.cmu.edu> | 2012-08-23 18:55:49 -0400 |
|---|---|---|
| committer | Ben Blum <bblum@andrew.cmu.edu> | 2012-08-23 21:09:57 -0400 |
| commit | f7f909a8cffad997b96debbcf4fea47cec64ba19 (patch) | |
| tree | 97863a85f6affe7e566e20fdf01f33f74615827d /src/etc/vim/syntax/rust.vim | |
| parent | 5ccf8175a8ae5f6aaff30bb2330a5f05ec89028d (diff) | |
| download | rust-f7f909a8cffad997b96debbcf4fea47cec64ba19.tar.gz rust-f7f909a8cffad997b96debbcf4fea47cec64ba19.zip | |
vim - fix indent rules, hilight format strings, some keywords
Diffstat (limited to 'src/etc/vim/syntax/rust.vim')
| -rw-r--r-- | src/etc/vim/syntax/rust.vim | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/src/etc/vim/syntax/rust.vim b/src/etc/vim/syntax/rust.vim index 93cab8445dd..a1a671c8f6e 100644 --- a/src/etc/vim/syntax/rust.vim +++ b/src/etc/vim/syntax/rust.vim @@ -10,14 +10,13 @@ elseif exists("b:current_syntax") finish endif -syn keyword rustAssert assert -syn match rustAssert "assert\(\w\)*" -syn keyword rustKeyword alt again as break -syn keyword rustKeyword check claim const copy do drop else export extern fail +syn match rustAssert "\<assert\(\w\)*" +syn keyword rustKeyword again as break +syn keyword rustKeyword const copy do drop else export extern fail syn keyword rustKeyword for if impl import in let log syn keyword rustKeyword loop match mod module move mut new of owned priv pub pure -syn keyword rustKeyword ref ret return static to unchecked -syn match rustKeyword "unsafe" " Allows also matching unsafe::foo() +syn keyword rustKeyword ref return static to unchecked +syn match rustKeyword "\<unsafe\>" " Allows also matching unsafe::foo() syn keyword rustKeyword use while with " FIXME: Scoped impl's name is also fallen in this category syn keyword rustKeyword mod trait class struct enum type nextgroup=rustIdentifier skipwhite @@ -73,7 +72,9 @@ syn match rustFuncCall "\w\(\w\)*::<"he=e-3,me=e-3 contains=rustAssert " syn match rustMacro '\w\(\w\)*!' syn match rustMacro '#\w\(\w\)*' -syn region rustString start=+L\="+ skip=+\\\\\|\\"+ end=+"+ contains=rustTodo +syn match rustFormat display "%\(\d\+\$\)\=[-+' #0*]*\(\d*\|\*\|\*\d\+\$\)\(\.\(\d*\|\*\|\*\d\+\$\)\)\=\([hlLjzt]\|ll\|hh\)\=\([aAbdiuoxXDOUfFeEgGcCsSpn?]\|\[\^\=.[^]]*\]\)" contained +syn match rustFormat display "%%" contained +syn region rustString start=+L\="+ skip=+\\\\\|\\"+ end=+"+ contains=rustTodo,rustFormat syn region rustAttribute start="#\[" end="\]" contains=rustString @@ -108,6 +109,7 @@ hi def link rustHexNumber rustNumber hi def link rustBinNumber rustNumber hi def link rustIdentifierPrime rustIdentifier +hi def link rustFormat Special hi def link rustString String hi def link rustCharacter Character hi def link rustNumber Number |
