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

效果

相关推荐
观山岳五楼2 分钟前
Ubuntu 24 怎么使用Ubuntu 20 的镜像源
linux·运维·ubuntu
Suhan4212 分钟前
IDEA 设置启动参数和环境变量
spring boot·spring·编辑器·idea
m0_7156467639 分钟前
20260720
linux·arm
寒晓星1 小时前
[linux]线程及多线程
linux·运维
辰痕~1 小时前
物理机装Linux操作系统(Ubuntu为例)
linux·ubuntu
爱吃提升1 小时前
VSCode 配置 Claude + Codex 完整教程
ide·vscode·编辑器
国服第二切图仔3 小时前
13其他工具 - Skill/LSP/Sleep等
linux·运维·里氏替换原则
就不掉头发3 小时前
计算机的虚拟内存
linux·服务器·windows
暴力求解3 小时前
Linux ---线程控制(二)
linux·运维·服务器·操作系统
smartvxworks4 小时前
Linux 实时内核(Linux Real-Time Kernel)详解:原理、实践与优化
java·linux·服务器