File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
branches/auto/src/etc/vim Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,6 @@ refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
14
14
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
15
15
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
16
16
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
17
- refs/heads/auto: 0addefa68a85974a0b3906e7a46376a98ad513cc
17
+ refs/heads/auto: 80b2926357232f8674df2c1db24bb91f24628e2f
18
18
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
19
19
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
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