We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a122108 commit 21a9ae3Copy full SHA for 21a9ae3
lua/rest-nvim/autocmds.lua
@@ -30,10 +30,16 @@ function autocmds.setup()
30
callback = function(args)
31
vim.keymap.set("n", "H", function()
32
functions.cycle_result_pane("prev")
33
- end, { desc = "Go to previous winbar pane" })
+ end, {
34
+ desc = "Go to previous winbar pane",
35
+ buffer = args.buf,
36
+ })
37
vim.keymap.set("n", "L", function()
38
functions.cycle_result_pane("next")
- end, { desc = "Go to next winbar pane" })
39
40
+ desc = "Go to next winbar pane",
41
42
43
vim.keymap.set("n", "?", result_help.open, {
44
desc = "Open rest.nvim request results help window",
45
buffer = args.buf,
0 commit comments