Fix: VimwikiGenerateLinks crash with single quote in filename (Issue #886 #881)

This commit is contained in:
Tinmarino
2020-08-07 12:20:59 -04:00
parent dd239c58fb
commit 4aa3ca5c16
2 changed files with 4 additions and 1 deletions

View File

@ -2565,8 +2565,10 @@ function! vimwiki#base#is_diary_file(filename, ...) abort
let l:diary_file_paths = a:0 > 0 ? a:1 : vimwiki#diary#get_diary_files()
let l:normalised_file_paths =
\ map(l:diary_file_paths, 'vimwiki#path#normalize(v:val)')
" Escape single quote (Issue #886)
let filename = substitute(a:filename, "'", "''", 'g')
let l:matching_files =
\ filter(l:normalised_file_paths, "v:val ==# '" . a:filename . "'" )
\ filter(l:normalised_file_paths, "v:val ==# '" . filename . "'" )
return len(l:matching_files) > 0 " filename is a diary file if match is found
endfunction