Skip to content

Commit

Permalink
fix issue #220
Browse files Browse the repository at this point in the history
  • Loading branch information
Yggdroot committed Oct 9, 2018
1 parent a64ea18 commit 6e39e9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/lfMru.vim
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function! lfMru#CacheFileName()
endfunction

function! lfMru#record(name)
if a:name == '' || !filereadable(a:name)
if a:name == '' || !filereadable(a:name) || strpart(a:name, 0, 2) == '\\'
return
endif
let file_list = readfile(g:Lf_MruCacheFileName)
Expand Down

0 comments on commit 6e39e9f

Please sign in to comment.