diff options
author | Takase <20792268+takase1121@users.noreply.github.com> | 2022-01-14 16:49:02 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-14 16:49:02 +0800 |
commit | 2d8a20917b97b64425adedb37f2c0d438b42ab24 (patch) | |
tree | 7aa5421aefbfa4e683f85827d0e7b72e03317150 | |
parent | bb7691cb262b0e9278b50b2fb763de2567acd01a (diff) | |
parent | ebd94b42503134b62270f15a314697f933390281 (diff) | |
download | lite-xl-plugins-2d8a20917b97b64425adedb37f2c0d438b42ab24.tar.gz lite-xl-plugins-2d8a20917b97b64425adedb37f2c0d438b42ab24.zip |
Merge pull request #19 from drwshh/patch-1
'elsif' is not a keyword in batch language
-rw-r--r-- | plugins/language_batch.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/language_batch.lua b/plugins/language_batch.lua index f9b9c4f..13753cf 100644 --- a/plugins/language_batch.lua +++ b/plugins/language_batch.lua @@ -6,7 +6,7 @@ local syntax = require "core.syntax" -- windows batch files use caseless matching for symbols local symtable = { ["keyword"] = { - "if", "else", "elsif", "not", "for", "do", "in", + "if", "else", "not", "for", "do", "in", "equ", "neq", "lss", "leq", "gtr", "geq", -- == != < <= > >= "nul", "con", "prn", "prn", "lpt1", "com1", "com2", "com3", "com4", "exist", "defined", |