Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在启动时在 vim 中回显自定义消息?我尝试echo "Message"在我的 vimrc 中使用,但似乎什么也没有出现。
echo "Message"
您可能需要设置一个autocmd以确保在您的消息出现之前所有内容都已完成加载。
autocmd
autocmd VimEnter * echo "Message"
这是一个命令行版本,可能有助于与某种类型的启动器配合使用:
vim -c 'e .|redraw|echom "Welcome!"'