Use new access functions for wiki-local variables -- part 4

Ref #256
This commit is contained in:
EinfachToll
2016-12-22 21:00:19 +01:00
parent f497a4abc7
commit 2329d602a7
7 changed files with 29 additions and 34 deletions
+1 -1
View File
@@ -109,7 +109,7 @@ function! vimwiki#markdown_base#follow_link(split, ...) "{{{ Parse link at curso
if !VimwikiLinkHandler(lnk)
if !vimwiki#markdown_base#open_reflink(lnk)
" remove the extension from the filename if exists
let lnk = substitute(lnk, VimwikiGet('ext').'$', '', '')
let lnk = substitute(lnk, vimwiki#vars#get_wikilocal('ext').'$', '', '')
call vimwiki#base#open_link(cmd, lnk)
endif
endif