[vim] vim多窗口切换

需求

写代码的过程中,经常需要在不相邻窗口之间跳转。

方案

使用 neovim-window切换。

插件管理使用lazy.nvim

neovim配置

~/.config/nvim/lua/plugins/下增加文件window-picker.lua,内容为

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,
}

效果

相关推荐
你很易烊千玺6 小时前
处理wangEditor编辑器缩进问题
编辑器
洋芋土豆7 小时前
linux文件及目录管理和vim编辑
linux·vim
柳鲲鹏7 小时前
RGB转换为NV12,查表式算法
linux·c语言·算法
程序猿(雷霆之王)7 小时前
Linux——线程安全
linux·运维·服务器
wdfk_prog7 小时前
[Linux]学习笔记系列 -- [kernel][time]timer
linux·笔记·学习
fy zs8 小时前
linux下动静态库
linux
不做无法实现的梦~8 小时前
机载电脑部署安装px4环境详细教程
linux
特轮飞8 小时前
Linux网络协议ARP IGMP ICMP的理解
linux·运维·网络协议
DeeplyMind9 小时前
第10章:中断处理-6:Implementing a Handler
linux·驱动开发