Skip to content

Commit

Permalink
[docs] Adding more numerals
Browse files Browse the repository at this point in the history
  • Loading branch information
luxluth committed Mar 28, 2024
1 parent ad3455b commit e7ed229
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions syntax/oz.vim
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
" Vim syntax file
" Language: Oz/Mozart (www.mozart-oz.org)
" Maintainer: Michael Neumann <mneumann@fantasy-coders.de>
" Contributer: Stijn Seghers <stijnseghers at gmail.com>
" Last Change: 2014 Apr 17

if exists("b:current_syntax")
finish
Expand Down Expand Up @@ -66,6 +63,9 @@ syn region ozString start=+L\="+ skip=+\\\\\|\\"+ end=+"+
syn region ozString start=+L\='+ skip=+\\\\\|\\'+ end=+'+

syn match ozNumber "[0-9][0-9]*\(\.[0-9][0-9]*\)\?"
syn match ozNumber "0b[0-1]*"
syn match ozNumber "0x[A-Z-a-z]*"
syn match ozNumber "[0-9]\.E[0-9]*"

syn sync fromstart

Expand Down

0 comments on commit e7ed229

Please sign in to comment.