From fd1dc11f6090cbd7ab3b98614f77b03cb2608611 Mon Sep 17 00:00:00 2001 From: Yigit Colakoglu Date: Thu, 28 Dec 2023 09:36:14 +0100 Subject: [PATCH] Fixed wrong telescope keybind --- .config/nvim/lua/keybinds/telescope.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nvim/lua/keybinds/telescope.lua b/.config/nvim/lua/keybinds/telescope.lua index f8eb3bb0..2e91196c 100644 --- a/.config/nvim/lua/keybinds/telescope.lua +++ b/.config/nvim/lua/keybinds/telescope.lua @@ -36,7 +36,7 @@ map('n', 'lt', "lua require('telescope.builtin').treesitter()", desc = "List symbols in workspace with treesitter" }) -map('n', 'lw', "lua require('telescope.builtin').diagnostic()", { +map('n', 'lw', "lua require('telescope.builtin').diagnostics()", { noremap = true, desc = "List diagnostic items" })