From c3fe8e033a72c40de9755109e0449bff08bc7815 Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Sat, 25 May 2024 23:32:14 +0100 Subject: [PATCH] Remove stray print in :Rg command --- plugin/commands.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/plugin/commands.lua b/plugin/commands.lua index eec8d28..2e3a785 100644 --- a/plugin/commands.lua +++ b/plugin/commands.lua @@ -119,7 +119,6 @@ end, { -- :Rg grep for the given string, word under the cursor, or visual selection -- then fuzzy find the results. Bang to enable regex in given string. vim.api.nvim_create_user_command('Rg', function(opts) - print(vim.inspect(opts)) local search = opts.args if opts.range == 2 then local lines = vim.fn.getline(vim.fn.line("'<"), vim.fn.line("'>"))