需求
写代码的过程中,经常须要在不相邻窗口之间跳转。
方案
使用 neovim-window切换。
插件管理使用lazy.nvim
neovim设置
在~/.config/nvim/lua/plugins/下增长文件window-picker.lua,内容为
- return {
- {
- "yorickpeterse/nvim-window",
- name = "neovim-window-picker",
- event = "VeryLazy",
- version = "2.*",
- keys = {
- { "<leader>wp", "<cmd>lua require('nvim-window').pick()<cr>", desc = "nvim-window: Jump to window" },
- },
- config = function()
- require("nvim-window").setup({
- -- The characters available for hinting windows.
- chars = {
- 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
- 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'
- },
- -- A group to use for overwriting the Normal highlight group in the floating
- -- window. This can be used to change the background color.
- normal_hl = "Normal",
- -- The highlight group to apply to the line that contains the hint characters.
- -- This is used to make them stand out more.
- hint_hl = "Bold",
- -- The border style to use for the floating window.
- border = "single",
- -- How the hints should be rendered. The possible values are:
- --
- -- - "float" (default): renders the hints using floating windows
- -- - "status": renders the hints to a string and calls `redrawstatus`,
- -- allowing you to show the hints in a status or winbar line
- render = "float",
- })
- end,
- }
复制代码 效果
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!qidao123.com:ToB企服之家,中国第一个企服评测及软件市场,开放入驻,技术点评得现金 |