Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Commit

Permalink
fix(functions): custom keymaps are usable again
Browse files Browse the repository at this point in the history
  • Loading branch information
NTBBloodbath committed Jul 13, 2021
1 parent f270ceb commit 0c777ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/doom/core/functions/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ M.load_custom_settings = function(settings_tbl, scope)
local opts = { silent = true }
for _, map in ipairs(settings_tbl) do
-- scope, lhs, rhs, options
map(map[1], map[2], map[3], opts)
utils.map(map[1], map[2], map[3], opts)
end
elseif scope == 'variables' then
for var, val in pairs(settings_tbl) do
Expand Down

0 comments on commit 0c777ba

Please sign in to comment.