diff options
author | Ash-Coder-or-Not <newestideaz@gmail.com> | 2022-01-17 23:57:50 +0530 |
---|---|---|
committer | Ash-Coder-or-Not <newestideaz@gmail.com> | 2022-01-17 23:57:50 +0530 |
commit | d3f76bae5406bda79391393deec0ad82fc74bc16 (patch) | |
tree | 4c4a8b1ad09e1bf5d08c6d9d5979e48e6e5e9029 /plugins/language_gmi.lua | |
parent | 1ebb2c70710d2c22c68c301c76ed74f75dbdcf67 (diff) | |
download | lite-xl-plugins-d3f76bae5406bda79391393deec0ad82fc74bc16.tar.gz lite-xl-plugins-d3f76bae5406bda79391393deec0ad82fc74bc16.zip |
reversing the full-line highlighting for bullets
Diffstat (limited to 'plugins/language_gmi.lua')
-rw-r--r-- | plugins/language_gmi.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/language_gmi.lua b/plugins/language_gmi.lua index 0d8a033..80c3e37 100644 --- a/plugins/language_gmi.lua +++ b/plugins/language_gmi.lua @@ -9,7 +9,7 @@ syntax.add { patterns = { { pattern = { "```", "```" }, type = "string" }, { pattern = "#.*", type = "keyword" }, - { pattern = "%*.*", type = "keyword2" }, + { pattern = "%*.+", type = "keyword2" }, { pattern = "=>", type = "function" }, { pattern = "https?://%S+", type = "literal" }, { pattern = "gemini?://%S+", type = "literal" }, |