diff options
author | Jari Vetoniemi <mailroxas@gmail.com> | 2018-09-27 17:25:47 +0300 |
---|---|---|
committer | Jari Vetoniemi <mailroxas@gmail.com> | 2018-09-27 17:25:47 +0300 |
commit | 938399ba5870dde9f78e8edf7586986ad4de9736 (patch) | |
tree | 3e969b2eb58580bfa5a576b798b41654f54f41f8 /vim | |
parent | 48ef6aa409c119130b1aa50fa6588db725d6e746 (diff) |
compiler: make endianess a filter
endianess is just a bunch of bitflips anyways
syntax for this is harmful as sometimes the files describe endianess
itself thus filter is more flexible.
Also, make it possible to filter non variable declarations as well.
Diffstat (limited to 'vim')
-rw-r--r-- | vim/filespec.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/filespec.vim b/vim/filespec.vim index ffa88ff..15664d7 100644 --- a/vim/filespec.vim +++ b/vim/filespec.vim @@ -11,7 +11,7 @@ syn region fsComment start="//" skip="\\$" end="$" keepend contains=@fs syn keyword fsKeyword select until syn keyword fsStructure enum struct -syn keyword fsConstant nul dec hex str be le true false +syn keyword fsConstant nul dec hex str true false syn match fsPrimitive "[su][1-9][0-9]*" syn case ignore |