parent
d20e03d660
commit
f823589076
@ -879,6 +879,12 @@ function! vimwiki#base#check_links() "{{{
|
||||
call add(errors, {'filename':wikifile, 'lnum':lnum, 'col':col,
|
||||
\'text': "there is no such anchor: ".target_anchor})
|
||||
endif
|
||||
else
|
||||
if target_file =~ '/$' " maybe it's a link to a directory
|
||||
if !isdirectory(target_file)
|
||||
call add(errors, {'filename':wikifile, 'lnum':lnum, 'col':col,
|
||||
\'text': "there is no such directory: ".target_file})
|
||||
endif
|
||||
else
|
||||
if filereadable(target_file) " maybe it's a non-wiki file
|
||||
let anchors_of_files[target_file] = []
|
||||
@ -887,6 +893,7 @@ function! vimwiki#base#check_links() "{{{
|
||||
\'text': "there is no such file: ".target_file})
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endfor
|
||||
endfor
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user