Skip to content

Commit 9f0e279

Browse files
committed
fix(syntax): remove duplicates & improve the consistency
1 parent 1505d17 commit 9f0e279

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

syntax/jule.vim

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,10 @@ endif
1313
syntax region juleDirective start="#\p\+\>" end="$" contains=juleComment,juleLineComment
1414

1515
" core keywords
16-
syntax keyword juleKeyword chan map error use fn struct byte rune enum unsafe
17-
syntax keyword juleKeyword let match defer if else for in impl trait break
18-
syntax keyword juleKeyword continue goto cpp type ret fall co let select
16+
syntax keyword juleKeyword chan error use fn struct enum unsafe let match defer if else for in impl trait break continue goto cpp type ret fall co select
1917

2018
" type keywords
21-
syntax keyword juleType int uint uintptr i8 i16 i32 i64 u8 u16 u32 u64 f32 f64 bool str any byte rune
19+
syntax keyword juleType int uint uintptr i8 i16 i32 i64 u8 u16 u32 u64 f32 f64 bool str any byte rune map
2220

2321
" storage keywords
2422
syntax keyword juleStorage static const mut self

0 commit comments

Comments
 (0)