From 5e34dbdf2179fe8dc4b513423e473014e3bf04d9 Mon Sep 17 00:00:00 2001 From: 409 Date: Wed, 18 Dec 2024 14:33:18 +0100 Subject: [PATCH] feat(keymap): add `]q` and `[q` for qf navigation --- lua/409/remap.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lua/409/remap.lua b/lua/409/remap.lua index 01c7d08..28f5445 100755 --- a/lua/409/remap.lua +++ b/lua/409/remap.lua @@ -44,3 +44,6 @@ vim.keymap.set("n", "", ":tabnew") vim.keymap.set("v", "<", "", ">gv") + +vim.keymap.set("n", "]q", "cnext") +vim.keymap.set("n", "[q", "cprev")