[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 小时前
TypeScript基本类型
linux·ubuntu·typescript
DeeplyMind2 小时前
第4章:DebugFS 安全性和并发控制
linux·驱动开发·debugfs
CS Beginner2 小时前
【Linux】快速配置wifi和SSH服务
linux·运维·ssh
become__better2 小时前
判断ceph osd 节点磁盘异常
linux·运维·ceph
JavaWizard-M2 小时前
centos7官方下载链接
linux·centos
我在人间贩卖青春3 小时前
Unix和Linux简史及标准化
linux·unix
特级业务专家3 小时前
这下发布不需要Jenkins了
linux·git·docker
小鹏linux3 小时前
【linux】进程与服务管理命令 - at
linux·运维·服务器
博语小屋3 小时前
TCP:协议、序列化与反序列化、JSON 数据和jsoncpp
linux·网络·网络协议·tcp/ip·json
硬核子牙3 小时前
手写生产级eBPF内存检测工具
linux