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.
目前,我知道我可以通过以下方式创建一个新文件:
c
SPC '
touch xxx
我想知道是否有一种简单的方法(类似SPC f xxx)。
SPC f xxx
谢谢。
是的,您可以使用SPC f f,输入新文件的名称,然后选择以开头的行[?](如果没有其他文件匹配,这是默认设置)。
SPC f f
[?]
请注意,您还可以使用它在不存在的子文件夹中创建文件,例如SPC f f my/sub/folder/file.txt RET.
SPC f f my/sub/folder/file.txt RET
如果您使用的是标准 vim 之类的键绑定,
:e /path/to/file
作品打开一个文件(之前不必存在)
:x
保存文件并关闭缓冲区并
:w
保存而不关闭。