From 541fe69d57648b8bd24e85eb2f86f14dbd7084cb Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Tue, 18 Mar 2025 13:47:05 +0100 Subject: [PATCH] [Telescope] Add tons more functionality. f to check it out --- nvim/lua/plugins/nav/telescope.lua | 77 +++++++++++------------------- 1 file changed, 27 insertions(+), 50 deletions(-) diff --git a/nvim/lua/plugins/nav/telescope.lua b/nvim/lua/plugins/nav/telescope.lua index f97ef17..0abb1bc 100755 --- a/nvim/lua/plugins/nav/telescope.lua +++ b/nvim/lua/plugins/nav/telescope.lua @@ -1,50 +1,3 @@ -local actions = require('telescope.actions') -local action_state = require('telescope.actions.state') - --- Custom function for search and replace using Telescope --- test -function _G.search_and_replace() - local current_file = vim.fn.expand('%:p') - local query = vim.fn.input('Enter search pattern: ') - - -- Create the Telescope prompt with custom mappings - require('telescope.builtin').find_files({ - prompt_title = 'Search and Replace', - cwd = vim.loop.cwd(), - hidden = true, - attach_mappings = function(prompt_bufnr, map) - actions.select_default:replace(function() - local selection = action_state.get_selected_entry() - - -- Get the replace pattern from user - local replace_query = vim.fn.input('Replace with: ', '') - - if not replace_query == '' then - local args = { query, replace_query } - - -- Open a terminal buffer to run the search and replace command - require('telescope.builtin').terminal_job({ - cmd = { - 'sh', '-c', - string.format( - "grep -rl '%s' . | xargs sed -i 's/%s/%s/g'", - table.concat(args, "'"), - query, - replace_query - ) - }, - cwd = vim.fn.expand('%:p:h'), - }) - end - - return true - end) - - return true - end - }) -end - return { -- fuzzy finder "nvim-telescope/telescope.nvim", @@ -77,11 +30,35 @@ return { opts.desc = "telescope buffers" vim.keymap.set("n", "fb", builtin.buffers, opts) - opts.desc = "telescope nvim functions" + opts.desc = "Show nvim functions" vim.keymap.set("n", "fh", builtin.help_tags, opts) + -- Recent Commands + opts.desc = "Show recent commands" + vim.keymap.set('n', 'frc', ':Telescope command_history', opts) - -- Search and replace - + -- Recent Searches + opts.desc = "Show recent searches" + vim.keymap.set('n', 'frs', ':Telescope search_history', opts) + + -- Old Files + opts.desc = "Show recent files" + vim.keymap.set('n', 'frf', ':Telescope oldfiles', opts) + + -- Quickfix Items + opts.desc = "Show quickfix items" + vim.keymap.set('n', 'fq', ':Telescope quickfix', opts) + + -- Spell Suggestions + opts.desc = "Show spell suggestions" + vim.keymap.set('n', 'fs', ':Telescope spell_suggest', opts) + + -- Diagnostics + opts.desc = "Show diagnostics" + vim.keymap.set('n', 'fd', ':Telescope diagnostics', opts) + + -- Implementations + opts.desc = "Show implementations" + vim.keymap.set('n', 'fi', ':Telescope lsp_implementations', opts) end, }