We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 118afa2 commit a85ce87Copy full SHA for a85ce87
plugin/ranger.vim
@@ -55,7 +55,7 @@ if has('nvim')
55
try
56
if filereadable(s:choice_file_path)
57
for f in readfile(s:choice_file_path)
58
- exec self.edit_cmd . f
+ exec self.edit_cmd . split(f, getcwd() . '/')[0]
59
endfor
60
call delete(s:choice_file_path)
61
endif
@@ -79,7 +79,7 @@ else
79
80
81
82
- exec a:edit_cmd . f
+ exec a:edit_cmd . split(f, getcwd() . '/')[0]
83
84
85
0 commit comments