summaryrefslogtreecommitdiff
path: root/vim
diff options
context:
space:
mode:
authorJari Vetoniemi <mailroxas@gmail.com>2018-09-27 02:43:50 +0300
committerJari Vetoniemi <mailroxas@gmail.com>2018-09-27 02:43:50 +0300
commita2b69e5b9479ddeba3c737c8ef01764d5454520c (patch)
tree9ef02540b4f9c877ab73d8ca978bc89f073fd2e6 /vim
parent5d253b30c5d84857d06393b77ce91fb974061665 (diff)
implement the binary number type
Diffstat (limited to 'vim')
-rw-r--r--vim/filespec.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/filespec.vim b/vim/filespec.vim
index ec21f8d..ffa88ff 100644
--- a/vim/filespec.vim
+++ b/vim/filespec.vim
@@ -31,7 +31,7 @@ syn case match
syn match fsSpecial display contained "\\\(x\x\+\|\o\{1,3}\|.\|$\)"
syn match fsString1 "'[^']*'" contains=fsSpecial
syn match fsString2 '"[^"]*"' contains=fsSpecial
-syn match fsBinary "b[0-1x]\+"
+syn match fsBinary "0b[0-1x]\+"
syn match fsBlock "[{}]"
syn match fsBracket "[\[\]]"