Skip to content

Instantly share code, notes, and snippets.

@godfat
Created June 13, 2014 05:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save godfat/210bea8c187e2d851a01 to your computer and use it in GitHub Desktop.
Save godfat/210bea8c187e2d851a01 to your computer and use it in GitHub Desktop.
autocmd FileType vimfiler nmap <buffer> <enter> ToggleOrEnter()
function! ToggleOrEnter()
if vimfiler#get_file().vimfiler__is_directory
t
else
e
endif
endfunction
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment