diff options
Diffstat (limited to 'lua/maps/find.lua')
-rw-r--r-- | lua/maps/find.lua | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/lua/maps/find.lua b/lua/maps/find.lua index 9d10a51..27a7fec 100644 --- a/lua/maps/find.lua +++ b/lua/maps/find.lua @@ -1,10 +1,20 @@ local utility_misc = require("utility.misc") vim.keymap.set("n", "<leader>p", function() + if vim.fn.win_gettype() ~= "" or vim.fn.win_getid() == vim.g.term_win then + -- Window is not a normal window or is a terminal window + return + end + require("telescope.builtin").find_files() end) vim.keymap.set("n", "<leader>b", function () + if vim.fn.win_gettype() ~= "" or vim.fn.win_getid() == vim.g.term_win then + -- Window is not a normal window or is a terminal window + return + end + require("telescope.builtin").buffers() end) @@ -21,15 +31,32 @@ vim.keymap.set("n", "<leader>gcl", function() end) vim.keymap.set("n", "<leader>f", function() + if vim.fn.win_gettype() ~= "" or vim.fn.win_getid() == vim.g.term_win then + -- Window is not a normal window or is a terminal window + return + end + require("telescope.builtin").live_grep() end) vim.keymap.set("n", "<leader>e", function() + if vim.fn.win_gettype() ~= "" or vim.fn.win_getid() == vim.g.term_win then + -- Window is not a normal window or is a terminal window + return + end + require("telescope").extensions.file_browser.file_browser() end) vim.keymap.set("n", "<leader>E", function() + if vim.fn.win_gettype() ~= "" or vim.fn.win_getid() == vim.g.term_win then + -- Window is not a normal window or is a terminal window + return + end + local curr_buf_dir = utility_misc.dir_name(vim.api.nvim_buf_get_name(0)) - require("telescope").extensions.file_browser.file_browser({ path = curr_buf_dir }) + require("telescope").extensions.file_browser.file_browser({ + path = curr_buf_dir + }) end) |