aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lua/lexers/bash.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lexers/bash.lua b/lua/lexers/bash.lua
index f8badba..2fa72f2 100644
--- a/lua/lexers/bash.lua
+++ b/lua/lexers/bash.lua
@@ -46,7 +46,7 @@ local identifier = token(l.IDENTIFIER, l.word)
-- Variables.
local variable = token(l.VARIABLE,
'$' * (S('!#?*@$') + l.digit^1 + l.word +
- l.delimited_range('{}', true, true)))
+ l.delimited_range('{}', true, true, true)))
-- Operators.
local operator = token(l.OPERATOR, S('=!<>+-/*^&|~.,:;?()[]{}'))