I find myself in the position where I want to create a new file in the same directory as the one that the open file is in. How do I create a new file in the directory of the open file in vim? Also, is there a a place where I can learn these things on my own? Googling didn't help.
|
|
From within Vim, new files are created like existing files are edited, via commands like Like a command prompt, Vim has a notion of current directory (
will create a new file named Alternatively, some people like Vim to always change to the current file's directory. This can be configured by placing
into your
Finally, Vim has a great built-in |
|||||||
|
|
If you want to create a new file and also show it in the window next to your current file, you can try this:
The Per @MartinLyne's comment above, this will create the file in the directory of the file in which you opened
This command changes the current working directory to the directory of the active file, meaning that running the |
||||
|
|