diff options
| author | rxi <rxi@users.noreply.github.com> | 2020-05-07 22:40:34 +0100 |
|---|---|---|
| committer | rxi <rxi@users.noreply.github.com> | 2020-05-07 22:40:34 +0100 |
| commit | 95bdb07d49a33f7ecdb8829bbd66bfeb4213fb33 (patch) | |
| tree | e5e4f44d9927cce226ba9fcc906721113e219e59 /data/core/common.lua | |
| parent | de94c8a13c831773644b76487fd622a222297af5 (diff) | |
| download | lite-xl-95bdb07d49a33f7ecdb8829bbd66bfeb4213fb33.tar.gz lite-xl-95bdb07d49a33f7ecdb8829bbd66bfeb4213fb33.zip | |
Removed unused variables
Diffstat (limited to 'data/core/common.lua')
| -rw-r--r-- | data/core/common.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/core/common.lua b/data/core/common.lua index 6e8c65ed..1fc91b80 100644 --- a/data/core/common.lua +++ b/data/core/common.lua @@ -60,7 +60,7 @@ end local function fuzzy_match_items(items, needle) local res = {} - for i, item in ipairs(items) do + for _, item in ipairs(items) do local score = system.fuzzy_match(tostring(item), needle) if score then table.insert(res, { text = item, score = score }) |
