Skip to content

Commit

Permalink
fix: typo in the last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
gaoDean committed Sep 14, 2022
1 parent b8c2268 commit 060da8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/autolist/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ M.update = function(opts)

-- for each filetype in th enabled filetypes
for ft, _ in pairs(filetype_lists) do
for func, mappings in pairs(newconf.normal_mapping) do setmap(func, mappings, "nnoremap") end
for func, mappings in pairs(newconf.insert_mapping) do setmap(func, mappings, "inoremap") end
for func, mappings in pairs(newconf.normal_mappings) do setmap(func, mappings, "nnoremap") end
for func, mappings in pairs(newconf.insert_mappings) do setmap(func, mappings, "inoremap") end
end
end

Expand Down

0 comments on commit 060da8e

Please sign in to comment.