gpt4 book ai didi

vim - 如何使用vim模式删除visual studio代码上的空行

转载 作者:行者123 更新时间:2023-12-04 03:02:59 25 4
gpt4 key购买 nike

我一直试图从一个大文件中删除许多空行。在其他编辑器上使用 vim , 或 vim本身,我可以这样做:

:%s/\n\n/\n/g

但是如果我使用 \r\t它不起作用。好像有点 vim编辑器上缺少功能。是否有任何配置可以使这项工作或其他方式做到这一点?

最佳答案

要在 VScode 中使用高级 Vim 功能,您可以利用其 Neovim 集成。

首先,您必须安装 Neovim。有关说明,请查看:https://github.com/neovim/neovim/wiki/Installing-Neovim

然后,在您的用户配置中调整以下设置:

// Use neovim on backend. (only works for Ex commands right now). You should restart VScode after enable/disabling this for the changes to take effect. NOTE: Neovim must be installed (v0.2.0) and neovimPath must be set the executable in order for this setting to work. Otherwise, vscodevim will crash.
"vim.enableNeovim": true,

// Path to run neovim executable. For example, /usr/bin/nvim, or C:\Program Files\Neovim\bin\nvim.exe
"vim.neovimPath": "nvim",

重新启动 VScode。现在您可以使用 Vim Ex 命令,因为这些命令被发送到在后台运行的 headless Neovim 实例。您甚至可以在一定程度上使用已安装的 Vim 插件功能。

关于vim - 如何使用vim模式删除visual studio代码上的空行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47434921/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com