Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So when I want to create a new file by using the :e command I don't want to specify the whole path, just the new filename. Can it be done?

share|improve this question

5 Answers

up vote 23 down vote accepted

As already suggested, you can use autochdir, which will change to the directory of the file you opened, the other option is

:cd mydirectory

which will change the directory. This can be an absolute or relative path, so :cd .. will move up one level. Or you can use :cd %:h which will also change to the directory the current file is in, but without setting autochdir.

:cd

will change directory to your home directory (or on windows, print the current directory).

:cd -

will change the directory to the previous directory you visited.

share|improve this answer
awesome guys. thank you! – Jon Feb 18 '10 at 13:14
4  
if you're using multiple windows, you can even use :lcd to change directory for the current window only. – Useless Feb 18 '10 at 13:59
1  
@Useless: interesting... I don't think I'd ever want that, but I suppose that's a matter of taste. Thanks for the info. – roe Feb 18 '10 at 14:12
I'm trying to figure out what the %:h means, any help? – Michael Jul 24 '12 at 11:03
2  
@Michael % translates to the current file name including path, : adds modifier, h is head, i.e. the path up to the last path separator, that is excluding the file name itself. – roe Aug 2 '12 at 17:39

Try adding set autochdir to your .vimrc. If you want to change it just this once, use :cd (or :cd! to force it).

share|improve this answer
the help says this breaks some plugins (i don't know which ones) so I've taken the precaution of adding mapping in my .vimrc: cnoremap cd. lcd %:p:h and nnoremap ,cd :cd %:p:h<CR>:pwd<CR> instead – ErichBSchulz Apr 28 at 11:43

Also if you are browsing the filesystem with the netrw file explorer you can set the current directory by pressing the c key.

share|improve this answer

With netrw: in addition to pressing the "c" key to set the current directory, you may also put

let g:netrw_keepdir= 0

in your .vimrc; this means that netrw will keep the browsing directory the same as the current directory.

share|improve this answer

I don't know what is wrong with vim. I want the directory where I start up vim as the current.

I have followed the tip about autochd above and set that to noautcd in my .vimrc.

I haven't done it yet, but I am about to start up vim like this from now on:

vim —cmd 'cd `pwd`'

That will make it stick to the current directory!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.