Skip to content

Commit

Permalink
chore:style
Browse files Browse the repository at this point in the history
  • Loading branch information
tris203 committed Jan 6, 2024
1 parent e0377f5 commit 620adbb
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions lua/hawtkeys/ts.lua
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ local tsQuery = require("nvim-treesitter.query")
---@field method WhichKeyMethods

---@class LazyKeyMapArgs
---@field method LazyMethodsts
---@field method LazyMethods

---@type table<string, boolean>
local scannedFiles = {}
Expand Down Expand Up @@ -478,13 +478,13 @@ function M.get_all_keymaps()
end
for _, path in ipairs(paths) do
-- if string.match(path, "%.config") then
local files = find_files(path)
for _, file in ipairs(files) do
local file_keymaps = find_maps_in_file(file)
for _, keymap in ipairs(file_keymaps) do
table.insert(keymaps, keymap)
end
local files = find_files(path)
for _, file in ipairs(files) do
local file_keymaps = find_maps_in_file(file)
for _, keymap in ipairs(file_keymaps) do
table.insert(keymaps, keymap)
end
end
-- end
end
end
Expand Down

0 comments on commit 620adbb

Please sign in to comment.