Small cleanup of the merged PR

Ref #187
This commit is contained in:
EinfachToll
2016-01-28 10:52:40 +01:00
parent 2aeaea5f0d
commit 5f9dbca89c
2 changed files with 16 additions and 8 deletions

View File

@ -1972,7 +1972,7 @@ function! vimwiki#base#detect_nested_syntax() "{{{
\ 'substitute(v:val, last_word, "\\=submatch(1)", "")')
let dict = {}
for elem in lines
exe "let dict.".elem." = elem"
let dict[elem] = elem
endfor
return dict
endfunction "}}}