add some more bugs

This commit is contained in:
dlond 2025-05-27 04:04:27 +12:00
parent 2113b33a58
commit 5ff3f3f4ba
1 changed files with 3 additions and 1 deletions

View File

@ -20,7 +20,9 @@ vim.keymap.set('n', '<C-j>', '<C-w><C-j>', { desc = 'Move focus to the lower win
vim.keymap.set('n', '<C-k>', '<C-w><C-k>', { desc = 'Move focus to the upper window' })
-- Add any other general-purpose keymaps you want here
vim.keymap.set('n', '
vim.keymap.set('n', '<leader>T', function()
require('custom.utils'):pick_target()
end, {desc = "Choose [T]arget"})
-- Standard practice for Lua modules that don't need to return complex data
return {}