VIM ubuntu 系统范围的插件目录
ubuntu中的vim插件目录在哪里?我需要删除 autoclose.vim 插件来解决此处描述的问题: 箭头键键入大写字母而不是移动光标
where is the vim plugin directory in ubuntu. I need to remove the autoclose.vim plugin to fix problem described here:
Arrow keys type capital letters instead of moving the cursor
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
检查
:h 运行时路径
以获取可能位置的完整描述您的文件夹(考虑到您没有使用捆绑插件)。以下是摘录:
Check
:h runtimepath
for a complete description of possible locations foryour folder (considering you're not using a bundle plugin). Here is an excerpt:
我认为获取所有已安装脚本的列表更容易,而不是阅读
'runtimepath'
上的规则:这将显示 vim 已加载的每个脚本的完整路径。如果只有几个,那么您可以找到您正在寻找的那个(OP的
autoclose.vim
)。如果列表很长,那么您可以捕获
a
寄存器(或任何其他寄存器)中scriptnames
的输出,将其粘贴到空缓冲区中,然后搜索名称你的插件的:Instead of reading the rules on
'runtimepath'
, I think it is easier to get a list of all the installed scripts:This will show the complete path to each script that vim has loaded. If there are only a few, then you can spot the one you are looking for (
autoclose.vim
for the OP).If the list is long, then you can capture the output of
scriptnames
in thea
register (or any other), paste it into an empty buffer, and search for the name of your plugin:你应该关注埃里克的评论。
也就是说,我的 .vimrc 中有这些行:
--EDIT--
我知道这个答案不是所选的答案,但由于 ZyX 评论,我学到了一些东西,所以这里是一个编辑。
下面的行应该写成如下:
恐怕很多人都犯了与我完全相同的错误:原始转义代码解决方案就像网络上的任何地方一样,从 Vim wiki 到 SO via很多论坛。
--END EDIT--
并且不需要删除任何插件。
You should follow Eric'comment.
That said, I have these lines in my .vimrc:
--EDIT--
I know this answer is not the chosen one but I learned something thanks to ZyX comments so here is an edit.
The lines below should be written as follow:
I'm afraid a lot of people do the exact same mistake I did: the raw escape code solution is like everywhere on the net from the Vim wiki to SO via lots of forums.
--END EDIT--
and didn't need to remove any plugin.