Last active
March 9, 2016 18:51
-
-
Save krompus/3ab1dc957d321e9a3ea2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fun! RangerChooser() | |
exec "silent !ranger --choosefile=/tmp/chosenfile " . expand("%:p:h") | |
if filereadable('/tmp/chosenfile') | |
exec 'edit ' . system('cat /tmp/chosenfile') | |
call system('rm /tmp/chosenfile') | |
endif | |
redraw! | |
endfun | |
map <Leader>r :call RangerChooser()<CR> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment