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.
我正在学习 vi/vim。最近,我遇到了一些不确定的问题。当我运行时:
ex somefile
前编辑器打开。好的,很好。玩了一段时间后,我跑了:
:vi
现在我处于正常的vi模式。这里一切都很清楚。但问题是: 我怎样才能回到 ex 模式(我第一次ex filename从 bash 运行)?我试过 [shift]+[q](因此是 Q),但没有任何反应。
ex filename
你没有说你使用的是什么版本的 vim,但是帮助 (:help ex-mode) 确实这样说:
注意:在旧版本的 Vim "Q" 格式文本中, 现在使用 gq 完成。但是如果你使用 vimrc_example.vim 脚本,“Q”就像“gq”一样工作。
所以你可以gq在正常模式下尝试或帮助也说
gQ 像“Q”一样切换到“Ex”模式,但实际上表现 得像一个接一个地键入“:”命令。
gQ在这种情况下,您可以从正常模式尝试。