From 2685b0f813fb3aa3d6d252988291ce72b73aa736 Mon Sep 17 00:00:00 2001 From: Fabrice Mouhartem Date: Thu, 3 Apr 2025 14:22:17 +0200 Subject: [PATCH] fix: vim.diagnostic.goto_{next/prev} is deprecated - {],[}d are default since nvim 0.10 - https://neovim.io/doc/user/news-0.10.html#_new-features --- lua/mappings.lua | 2 -- 1 file changed, 2 deletions(-) diff --git a/lua/mappings.lua b/lua/mappings.lua index 41b2406..122b977 100644 --- a/lua/mappings.lua +++ b/lua/mappings.lua @@ -21,8 +21,6 @@ keymap('n', 'k', "v:count == 0 ? 'gk' : 'k'", { expr = true, silent = true }) keymap('n', 'j', "v:count == 0 ? 'gj' : 'j'", { expr = true, silent = true }) -- Diagnostic keymaps -keymap('n', '[d', vim.diagnostic.goto_prev, { desc = 'Go to previous diagnostic message' }) -keymap('n', ']d', vim.diagnostic.goto_next, { desc = 'Go to next diagnostic message' }) keymap('n', 'e', vim.diagnostic.open_float, { desc = 'Open floating diagnostic message' }) keymap('n', 'q', vim.diagnostic.setloclist, { desc = 'Open diagnostics list' })