From 620adbb0addbacc34264e5f4ab8b9eb9b126a69a Mon Sep 17 00:00:00 2001 From: tris203 Date: Sat, 6 Jan 2024 17:11:27 +0000 Subject: [PATCH] chore:style --- lua/hawtkeys/ts.lua | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lua/hawtkeys/ts.lua b/lua/hawtkeys/ts.lua index 4e9df90..895f3ea 100644 --- a/lua/hawtkeys/ts.lua +++ b/lua/hawtkeys/ts.lua @@ -33,7 +33,7 @@ local tsQuery = require("nvim-treesitter.query") ---@field method WhichKeyMethods ---@class LazyKeyMapArgs ----@field method LazyMethodsts +---@field method LazyMethods ---@type table local scannedFiles = {} @@ -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