Currently, I know that I can create a new file with the following ways:
ckey in NeotreeSPC 'in shell layer, and use thetouch xxxcommand
I am wondering whether there is a simple way (something like SPC f xxx) or not.
Thanks.
Currently, I know that I can create a new file with the following ways:
c key in NeotreeSPC ' in shell layer, and use the touch xxx commandI am wondering whether there is a simple way (something like SPC f xxx) or not.
Thanks.
Yes, you can use SPC f f, enter the name of the new file and then select the line starting with [?] (which is the default if no other file matches).
Note you can also use this to create files in non-existing subfolders, like SPC f f my/sub/folder/file.txt RET.
If you are using the standard vim like keybindings,
:e /path/to/file
works opens a file ( which doesn't have to exist before )
:x
saves the file and closes the buffer and
:w
saves without closing.