diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2025-05-07 19:47:43 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2025-05-07 19:47:43 +0200 |
commit | 31ae40085206dc365a15fd6e9d13978e392f8b35 (patch) | |
tree | 946a2fd2ac2ab6131d0a17bd8f694f06723a30bd | |
parent | b69d3f8692b1d34f9b8616e046cdabe0d2fb67c0 (diff) | |
download | liberty-31ae40085206dc365a15fd6e9d13978e392f8b35.tar.gz liberty-31ae40085206dc365a15fd6e9d13978e392f8b35.tar.xz liberty-31ae40085206dc365a15fd6e9d13978e392f8b35.zip |
LibertyXDR: update VIM syntax highlight fileHEADorigin/mastermaster
-rw-r--r-- | libertyxdr.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libertyxdr.vim b/libertyxdr.vim index d980d77..ebe3f3a 100644 --- a/libertyxdr.vim +++ b/libertyxdr.vim @@ -8,7 +8,7 @@ syn region libertyxdrBlockComment start=+/[*]+ end=+[*]/+ syn match libertyxdrComment "//.*" syn match libertyxdrIdentifier "\<[[:alpha:]][[:alnum:]_]*\>" syn match libertyxdrNumber "\<0\>\|\(-\|\<\)[1-9][[:digit:]]*\>" -syn keyword libertyxdrKeyword const enum struct union switch case +syn keyword libertyxdrKeyword const enum struct union switch case default syn keyword libertyxdrType bool u8 u16 u32 u64 i8 i16 i32 i64 string void let b:current_syntax = "libertyxdr" |