aboutsummaryrefslogtreecommitdiff
path: root/lua/lexers/bash.lua
diff options
context:
space:
mode:
authorKarl Schultheisz <kdsch@protonmail.com>2020-01-21 21:27:11 -0500
committerKarl Schultheisz <kdsch@protonmail.com>2020-01-21 21:27:11 -0500
commit2d6150426fe825cd7b179c5c3ed648ae607be122 (patch)
tree72d0d8be0c235900736ef0b89fe4770d98c5e1c9 /lua/lexers/bash.lua
parentcb03746137bc23f3c1b485088fefb9d4feffa368 (diff)
parent30cd60cc2b2babda36ab752396df58697e9f26fd (diff)
downloadvis-2d6150426fe825cd7b179c5c3ed648ae607be122.tar.gz
vis-2d6150426fe825cd7b179c5c3ed648ae607be122.tar.xz
Merge branch 'master' into add-layout-option
Diffstat (limited to 'lua/lexers/bash.lua')
-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 2fa72f2..207cb22 100644
--- a/lua/lexers/bash.lua
+++ b/lua/lexers/bash.lua
@@ -21,7 +21,7 @@ local heredoc = '<<' * P(function(input, index)
local s, e, _, delimiter =
input:find('%-?(["\']?)([%a_][%w_]*)%1[\n\r\f;]+', index)
if s == index and delimiter then
- local _, e = input:find('[\n\r\f]+'..delimiter, e)
+ local _, e = input:find('[\n\r\f]+'..delimiter..'\n', e)
return e and e + 1 or #input + 1
end
end)