From e353c5322a5957790561df1972c20a9acf178c20 Mon Sep 17 00:00:00 2001 From: Fiji <156847941+FijiHasGithub@users.noreply.github.com> Date: Sat, 20 Jan 2024 00:04:49 +0000 Subject: [PATCH] Improve number highlighting for python syntax highlighting (#1704) * Improve number highlighting for python syntax highlighting Adds support for octal and binary representation, as well uppercase characters (X, B and O) * add underscore and negative hex/oct/bin value support * Removed | from pattern --- data/plugins/language_python.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/plugins/language_python.lua b/data/plugins/language_python.lua index 743e990a..220ddd54 100644 --- a/data/plugins/language_python.lua +++ b/data/plugins/language_python.lua @@ -16,8 +16,8 @@ syntax.add { { pattern = { "[ruU]?'''", "'''", '\\' }, type = "string" }, { pattern = { '[ruU]?"', '"', '\\' }, type = "string" }, { pattern = { "[ruU]?'", "'", '\\' }, type = "string" }, - { pattern = "0x[%da-fA-F]+", type = "number" }, - { pattern = "-?%d+[%d%.eE]*", type = "number" }, + { pattern = "-?0[xboXBO][%da-fA-F_]+",type = "number" }, + { pattern = "-?%d+[%d%.eE_]*", type = "number" }, { pattern = "-?%.?%d+", type = "number" }, { pattern = "[%+%-=/%*%^%%<>!~|&]", type = "operator" }, { pattern = "[%a_][%w_]*%f[(]", type = "function" },