8

Sometimes I use Command-T to browse files. When I find the file I needed, I would like to switch the current working directory to the opened file's directory. How can I do this?

jligeza
  • 537
  • 4
  • 9

1 Answers1

18

:cd %:h

Explain:
:cd change directory Vim command
% - full path to current file
%:h - full path to current file without filename itself.

See :help expand and :help :cd for more information

Alex Kroll
  • 1,069
  • 10
  • 16