英文:
How can I access the commandline screen from Vim on a Mac terminal?
问题
我曾经在vim上不小心按了一些键,然后另一个屏幕弹出来,上面显示着一条消息,大致是这样的:“你找到了控制台屏幕!要退出,请按:q!”我现在想再次访问这个屏幕,但我不记得是哪个键组合了。
我确信不是:term
或以:
开头的其他命令,只是一些按键。我尝试在互联网和vim文档中查找,但只找到了:term
之类的结果。如果你对此有任何了解,请留下评论或回复。谢谢!
编辑:它给出的确切消息是“你发现了命令行窗口!你可以用“:q”关闭它。”
英文:
I was on vim once and I accidentally pressed some keys, then another screen popped up with a message along the lines of "You found the console screen! To exit, press :q!" I'm trying to access this screen again, but I don't remember what key combination it was.
I do know for sure that it was not :term
or any other command that started with :
, it was just some key presses. I tried looking this up on the internet and on the vim docs, but the only results I got were things like :term
. If you know anything at all about this, please leave a comment or a reply. Thanks!
Edit: the exact message it gives is You discovered the command-line window! You can close it with ":q"
答案1
得分: 0
你可以在正常模式下输入q:
来再次显示它。请参阅:help q:
。
英文:
You can show it again by typing q:
in normal mode. See :help q:
.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论