diff options
author | drwshh <67403732+drwshh@users.noreply.github.com> | 2022-01-14 15:56:15 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-14 15:56:15 +0800 |
commit | ebd94b42503134b62270f15a314697f933390281 (patch) | |
tree | 7aa5421aefbfa4e683f85827d0e7b72e03317150 /plugins | |
parent | bb7691cb262b0e9278b50b2fb763de2567acd01a (diff) | |
download | lite-xl-plugins-ebd94b42503134b62270f15a314697f933390281.tar.gz lite-xl-plugins-ebd94b42503134b62270f15a314697f933390281.zip |
'elsif' is not a keyword in batch language
Diffstat (limited to 'plugins')
-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", |