jameskilton (owner)

Revisions

gist: 6059 Download_button fork
public
Public Clone URL: git://gist.github.com/6059.git
Text only
1
2
3
4
5
6
7
8
" Make ',e' (in normal mode) give a prompt for opening files
" in the same dir as the current buffer's file.
if has("unix")
  map ,e :e <C-R>=expand("%:p:h") . "/" <CR>
else
  map ,e :e <C-R>=expand("%:p:h") . "\\" <CR>
endif