Skip to content
This repository was archived by the owner on Sep 28, 2024. It is now read-only.

Commit 7607ccb

Browse files
committed
Addressed some minor Luacheck issues.
Not all shadowing warnings need to be fixed.
1 parent 57eebc1 commit 7607ccb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ textadept.editing.autocompleters.python = function()
8181
if not name:find(name_patt) or list[name] then goto continue end
8282
local fields = line:match(';"\t(.*)$')
8383
local k, class = fields:sub(1, 1), fields:match('class:(%S+)') or ''
84-
if class == symbol then list[#list + 1], list[name] = name .. sep .. xpms[k], truen end
84+
if class == symbol then list[#list + 1], list[name] = name .. sep .. xpms[k], true end
8585
::continue::
8686
end
8787
::continue::

0 commit comments

Comments
 (0)