Vim – 如何在启动vim时立即运行命令?

前端之家收集整理的这篇文章主要介绍了Vim – 如何在启动vim时立即运行命令?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个插件(FindFile.vim)需要运行:FindFileCache。每当我开始vim收集文件缓存快速打开..我必须运行这个每次我启动vim虽然。

我怎么可以写一个运行一次,每次vim启动的命令?

保存配置的最好的地方是.vimrc
文件。但是,它的来源太早,检查:h startup:
At startup,Vim checks environment variables and files and sets values
accordingly.  Vim proceeds in this order:

1. Set the 'shell' and 'term' option                *SHELL* *COMSPEC* *TERM*
2. Process the arguments
3. Execute Ex commands,from environment variables and/or files *vimrc* *exrc*
4. Load the plugin scripts.                                 *load-plugins*
5. Set 'shellpipe' and 'shellredir'
6. Set 'updatecount' to zero,if "-n" command argument used
7. Set binary options
8. Perform GUI initializations
9. Read the viminfo file
10. Read the quickfix file
11. Open all windows
12. Execute startup commands

如你所见,您的.vimrc将在插件之前加载。如果你放
你的:FindFileCache。在其中将发生错误,因为该命令
退出(但是,一旦插件在步骤4中加载,将存在)。

为了解决这个问题,而不是直接执行命令,创建一个
自动命令。正如你可能已经知道,自动命令执行一些
事件发生时的命令。在这种情况下,VimEnter事件看起来
适当(从:h VImEnter):

*VimEnter*
VimEnter                    After doing all the startup stuff,including
                            loading .vimrc files,executing the "-c cmd"
                            arguments,creating all windows and loading
                            the buffers in them.

然后,只需将此行在.vimrc中:

autocmd VimEnter * FindFileCache .
原文链接:https://www.f2er.com/bash/391708.html

猜你在找的Bash相关文章