From 32b3c38d9354bbf6d7258914f70d99c12beb85af Mon Sep 17 00:00:00 2001 From: rhiannon morris Date: Thu, 16 May 2024 22:02:34 +0200 Subject: [PATCH] the 0. in 0.4 is not a quantity --- syntax/quox.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/syntax/quox.vim b/syntax/quox.vim index 33ff89f..985ef45 100644 --- a/syntax/quox.vim +++ b/syntax/quox.vim @@ -45,13 +45,13 @@ hi def link quoxTag Constant syn match quoxCharEsc /\\\%(\\\|"\|x\x\+;\|[nt]\)/ contained hi def link quoxCharEsc SpecialChar -syn match quoxQty /\<[01#ω]\./ +syn match quoxQty /\<[01#ω]\.\d\@!/ hi def link quoxQty Special syn match quoxDef /\<\%(def\|postulate\)[01#ω]\?\>/ contains=quoxQtySuffix syn match quoxQtySuffix /[01#ω]\>/ contained hi def link quoxDef Label -hi def link quoxQtySuffix quoxQty +hi link quoxQtySuffix quoxQty syn keyword quoxNamespace namespace hi def link quoxNamespace Type