File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
" Highlight the 100th text column
2
2
" Feature became available in v7.3
3
3
if version >= 703
4
- set colorcolumn = 100
4
+ setlocal colorcolumn = 100
5
5
endif
Original file line number Diff line number Diff line change 1
- if exists (' g:no_rust_conceal ' ) || ! has (' conceal' ) || &enc != ' utf-8'
1
+ if ! exists (' g:rust_conceal ' ) || ! has (' conceal' ) || &enc != ' utf-8'
2
2
finish
3
3
endif
4
4
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ syn match rustIdentifier contains=rustIdentifierPrime "\%([^[:cntrl:][:spac
29
29
syn match rustFuncName " \% ([^[:cntrl:][:space:][:punct:][:digit:]]\| _\)\% ([^[:cntrl:][:punct:][:space:]]\| _\) *" display contained
30
30
31
31
" Reserved words
32
- syn keyword rustKeyword m32 m64 m128 f80 f16 f128 be
32
+ " syn keyword rustKeyword m32 m64 m128 f80 f16 f128 be " These are obsolete
33
33
34
34
syn keyword rustType int uint float char bool u8 u16 u32 u64 f32
35
35
syn keyword rustType f64 i8 i16 i32 i64 str Self
You can’t perform that action at this time.
0 commit comments