Skip to content

Commit

Permalink
Fix #629 remove expand()
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed May 1, 2019
1 parent ae432f2 commit f16b581
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/denite/helper.vim
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ function! denite#helper#_set_oldfiles(oldfiles) abort
endfunction
function! denite#helper#_get_oldfiles() abort
return filter(copy(v:oldfiles),
\ 'filereadable(expand(v:val)) || buflisted(expand(v:val))')
\ 'filereadable(v:val) || buflisted(v:val)')
endfunction


Expand Down

0 comments on commit f16b581

Please sign in to comment.