Reputation: 9244
In IdeaVIM how do we create new file within the current path ? I used to use :e to create a new file, but it doesn't work the same way with ideaVim.
:e
Upvotes: 7
Views: 3434
Reputation: 116
you can enter :action NewFile to use build-in new file function
:action NewFile
Upvotes: 10