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

效果

相关推荐
色空大师1 小时前
【网站开发-java】
java·linux·服务器·开发语言·网站·搭建网站
释怀不想释怀1 小时前
硬盘基础了解知识
linux·运维·服务器
福楠1 小时前
现代C++ | 右值引用 + std::move + noexcept
linux·c语言·开发语言·c++
逆向编程1 小时前
Ubuntu 入门教程,日常常用命令
linux·运维·ubuntu
逆向编程1 小时前
Ubuntu 入门教程:从安装到日常使用,新手一步到位
linux·运维·ubuntu
叠叠乐2 小时前
ubuntu linux DNS 系统流程逻辑
linux·运维·ubuntu
西西弗Sisyphus2 小时前
Linux Shell 脚本中的 Shebang(#! /bin/bash)是什么
linux·bash·shebang
qzhqbb2 小时前
Linux 防火墙(iptable、nftables、ufw)
linux·运维·服务器
Mapleay2 小时前
alsa-lib 的插件
linux
枫桥骤雨2 小时前
Ubuntu NVM部署Node.js教程
linux·ubuntu·node.js·nvm