Skip to content

Instantly share code, notes, and snippets.

@Raimondi
Created February 27, 2016 15:15
Show Gist options
  • Save Raimondi/6645bd39be6444ac6a5b to your computer and use it in GitHub Desktop.
Save Raimondi/6645bd39be6444ac6a5b to your computer and use it in GitHub Desktop.
function! HighlightCurrent()
let pathlist = split(expand('%'), '/')
exec "Explore " . getcwd()
while 1
let elem = remove(pathlist, 0)
if !search(elem, 'W')
break
endif
if !empty(pathlist)
exec "normal \<CR>"
else
break
endif
endwhile
endfunction
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment