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 318eb50 commit fafa283Copy full SHA for fafa283
lua/rest-nvim/ui/help.lua
@@ -42,8 +42,6 @@ local function get_or_create_buf()
42
43
-- Write to buffer
44
local buf_content = {
45
- "**`rest.nvim` results window help**",
46
- "",
47
"**Keybinds**:",
48
" - `" .. keybinds.prev .. "`: go to previous pane",
49
" - `" .. keybinds.next .. "`: go to next pane",
@@ -76,6 +74,7 @@ function help.open()
76
74
-- Display the help buffer window
77
75
---@cast help_bufnr number
78
local help_win = vim.api.nvim_open_win(help_bufnr, true, {
+ title = "rest.nvim results window help",
79
style = "minimal",
80
border = "single",
81
win = winnr,
0 commit comments