Patch for issue #585 - implement suggested improvements

This commit is contained in:
Nico 2018-12-15 11:33:38 +01:00 committed by EinfachToll
parent 0f38192b03
commit a7160310c9
1 changed files with 2 additions and 5 deletions

View File

@ -152,14 +152,11 @@ function! vimwiki#base#resolve_link(link_text, ...)
let link_infos.anchor = join(split_lnk[1:], '#')
endif
if link_text == '' " because the link was of the form '#anchor'
if source_file =~ vimwiki#vars#get_wikilocal('ext') . '$'
let expected_ext = vimwiki#u#escape(vimwiki#vars#get_wikilocal('ext')).'$'
if source_file =~# expected_ext
" Source file has expected extension. Remove it, it will be added later on
let ext_len = strlen(vimwiki#vars#get_wikilocal('ext'))
let link_text = fnamemodify(source_file, ':p:t')[:-ext_len-1]
else
" Source file has unexpected (or no) extension. A new file with the proper
" extension appended will be created
" let link_text = fnamemodify(source_file, ':p:t:r')
endif
endif