57 lines
1.3 KiB
Lua
Raw Normal View History

2023-03-15 16:07:07 +08:00
local api = vim.api
---@type table<string, fun(hover: TransHover)>
local strategy = {
2023-03-15 16:07:07 +08:00
pageup = function(hover)
hover.buffer:normal('gg')
end,
2023-03-15 16:07:07 +08:00
pagedown = function(hover)
hover.buffer:normal('G')
end,
2023-03-15 16:07:07 +08:00
pin = function(hover)
if hover.pin then return end
local window = hover.window
local width, height = window:width(), window:height()
local col = vim.o.columns - width - 3
window:try_close()
window = hover:init_window({
width = width,
height = height,
relative = 'editor',
col = col,
})
window:set('wrap', true)
hover.pin = true
end,
2023-03-15 16:07:07 +08:00
2023-03-14 13:18:53 +08:00
close = function(hover)
hover:destroy()
end,
2023-03-15 16:07:07 +08:00
toggle_entry = function(hover)
if api.nvim_get_current_win() ~= hover.window.winid then
api.nvim_set_current_win(hover.window.winid)
return
end
for _, winid in ipairs(api.nvim_list_wins()) do
if winid ~= hover.window.winid then
api.nvim_set_current_win(winid)
break
end
end
end,
}
---@class TransHover
---@field execute fun(hover: TransHover, action: string)
2023-03-14 13:18:53 +08:00
return function(hover, action)
-- TODO :
2023-03-14 18:17:07 +08:00
strategy[action](hover)
end