aboutsummaryrefslogtreecommitdiff
path: root/scripts/genvimvim.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-10-22 21:52:51 +0200
committerGitHub <noreply@github.com>2018-10-22 21:52:51 +0200
commit6dae7776ed0d397b444dc5193c7f11ac09e43042 (patch)
tree66a37a8935f6eee9c9cb24dc42bb3cbe7c6d3ef0 /scripts/genvimvim.lua
parentf20427451e7f118d89d231cbab1faf8061369ddc (diff)
parentafd1d412fa912ed39b0dc37a66df6dd0b671ce91 (diff)
downloadrneovim-6dae7776ed0d397b444dc5193c7f11ac09e43042.tar.gz
rneovim-6dae7776ed0d397b444dc5193c7f11ac09e43042.tar.bz2
rneovim-6dae7776ed0d397b444dc5193c7f11ac09e43042.zip
Merge #9145 'CI, nodejs fixes'
Diffstat (limited to 'scripts/genvimvim.lua')
-rw-r--r--scripts/genvimvim.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/genvimvim.lua b/scripts/genvimvim.lua
index 24c147b811..947aef6cb5 100644
--- a/scripts/genvimvim.lua
+++ b/scripts/genvimvim.lua
@@ -85,7 +85,7 @@ local vimau_start = 'syn keyword vimAutoEvent contained '
w('\n\n' .. vimau_start)
for _, au in ipairs(auevents.events) do
- if not auevents.neovim_specific[au] then
+ if not auevents.nvim_specific[au] then
if lld.line_length > 850 then
w('\n' .. vimau_start)
end
@@ -93,7 +93,7 @@ for _, au in ipairs(auevents.events) do
end
end
for au, _ in pairs(auevents.aliases) do
- if not auevents.neovim_specific[au] then
+ if not auevents.nvim_specific[au] then
if lld.line_length > 850 then
w('\n' .. vimau_start)
end
@@ -104,7 +104,7 @@ end
local nvimau_start = 'syn keyword nvimAutoEvent contained '
w('\n\n' .. nvimau_start)
-for au, _ in pairs(auevents.neovim_specific) do
+for au, _ in pairs(auevents.nvim_specific) do
if lld.line_length > 850 then
w('\n' .. nvimau_start)
end