mirror of
https://github.com/ksyasuda/dotfiles.git
synced 2026-09-11 05:16:22 -07:00
27 lines
433 B
Lua
27 lines
433 B
Lua
return {
|
|
"rmagatti/goto-preview",
|
|
keys = {
|
|
{
|
|
"gpc",
|
|
function()
|
|
require("goto-preview").close_all_win()
|
|
end,
|
|
desc = "Close preview windows",
|
|
},
|
|
{
|
|
"gpd",
|
|
function()
|
|
require("goto-preview").goto_preview_definition()
|
|
end,
|
|
desc = "Preview definition",
|
|
},
|
|
{
|
|
"gpi",
|
|
function()
|
|
require("goto-preview").goto_preview_implementation()
|
|
end,
|
|
desc = "Preview implementation",
|
|
},
|
|
},
|
|
}
|