diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-05-06 10:44:06 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-05-06 10:49:35 -0700 |
| commit | 948526134b6e8a4308381f7c4ef4ebf49efdfb1c (patch) | |
| tree | 41e02e80a5a1bd48f83324418b9cdc5fc7303910 /src/etc/vim/syntax/rust.vim | |
| parent | c600dc0f535b4afc7722bda4154e35f948e3f6b2 (diff) | |
| download | rust-948526134b6e8a4308381f7c4ef4ebf49efdfb1c.tar.gz rust-948526134b6e8a4308381f7c4ef4ebf49efdfb1c.zip | |
etc: Add box as a keyword to editor configs
This keyword is about to be used much more often than it was a few weeks ago, it's time to tell editors about the new keyword.
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 f937fd8caa6..765096933d1 100644 --- a/src/etc/vim/syntax/rust.vim +++ b/src/etc/vim/syntax/rust.vim @@ -18,7 +18,7 @@ syn keyword rustOperator as syn match rustAssert "\<assert\(\w\)*!" contained syn match rustFail "\<fail\(\w\)*!" contained -syn keyword rustKeyword break continue +syn keyword rustKeyword break box continue syn keyword rustKeyword extern nextgroup=rustExternCrate,rustObsoleteExternMod skipwhite syn keyword rustKeyword for in if impl let syn keyword rustKeyword loop once priv pub |
