[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 分钟前
Linux系统安全学习
linux·学习·系统安全
勇闯逆流河19 分钟前
【Linux】基础开发工具(gcc/g++,makefile)
linux·运维·服务器
爱丽_21 分钟前
Linux 目录结构与常用命令速查(服务器必备)
linux·运维·服务器
山峰哥22 分钟前
SQL优化全攻略:从索引策略到Explain实战解析
大数据·数据库·sql·oracle·性能优化·编辑器
yatum_201440 分钟前
集群节点时钟同步(NTP)配置手册
linux·分布式·hbase
椰奶燕麦1 小时前
Linux 服务开机自启配置指南 (基于 Crontab)
linux
路溪非溪1 小时前
systemd简介和使用总结
linux·arm开发·驱动开发
星竹晨L1 小时前
Linux入门:权限管理的核心逻辑
linux
零基础的修炼1 小时前
Linux网络---Epoll-Reactor模式
linux·网络·php
larance1 小时前
NebulaGraph 数据库部署与运维指令清单
linux·服务器·数据库