aboutsummaryrefslogtreecommitdiff
path: root/plugins/language_batch.lua
diff options
context:
space:
mode:
authordrwshh <67403732+drwshh@users.noreply.github.com>2022-01-14 15:56:15 +0800
committerGitHub <noreply@github.com>2022-01-14 15:56:15 +0800
commitebd94b42503134b62270f15a314697f933390281 (patch)
tree7aa5421aefbfa4e683f85827d0e7b72e03317150 /plugins/language_batch.lua
parentbb7691cb262b0e9278b50b2fb763de2567acd01a (diff)
downloadlite-xl-plugins-ebd94b42503134b62270f15a314697f933390281.tar.gz
lite-xl-plugins-ebd94b42503134b62270f15a314697f933390281.zip
'elsif' is not a keyword in batch language
Diffstat (limited to 'plugins/language_batch.lua')
-rw-r--r--plugins/language_batch.lua2
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",