Skip to content

Commit 1c3cca8

Browse files
committed
vim: 'be' is a reserved keyword
1 parent 5b47c55 commit 1c3cca8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/etc/vim/syntax/rust.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ syn match rustIdentifier contains=rustIdentifierPrime "\%([^[:cntrl:][:spac
2626
syn match rustFuncName "\%([^[:cntrl:][:space:][:punct:][:digit:]]\|_\)\%([^[:cntrl:][:punct:][:space:]]\|_\)*" display contained
2727

2828
" Reserved words
29-
syn keyword rustKeyword m32 m64 m128 f80 f16 f128
29+
syn keyword rustKeyword m32 m64 m128 f80 f16 f128 be
3030

3131
syn keyword rustType int uint float char bool u8 u16 u32 u64 f32
3232
syn keyword rustType f64 i8 i16 i32 i64 str Self

0 commit comments

Comments
 (0)