Vim: use the path of the current file

In Vim, how can I capture the path of the current file?

I know that the % register contains the name of the current file, but I want the path, so I can do something like

:w **bar.txt

... to "Save As" a new file, with ** representing the current file's path so that the new file will go in the same folder.

1 Answer

Answered at

% is the actual file

%:p:h

is the dirname of the file

%:p

is the full path of the file. Use what you prefer.

In order to save files, just

:w %:p:h/something

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like