Version 1.1.1

Follow up bugfix release.
* FIX: Issue 122: Dot character in vimwiki's directory path isn't escaped.
* FIX: Issue 123: Where is Vimwiki2HTML and other commands? Sometimes filetype is not set up to vimwiki.
* FIX: Issue 124: Highlight group not found: Normal
This commit is contained in:
Maxim Kim
2010-09-03 00:00:00 +00:00
committed by Able Scraper
parent 458c4539e5
commit 78ee71394a
3 changed files with 17 additions and 6 deletions

View File

@ -546,7 +546,10 @@ endfunction "}}}
function vimwiki#get_hl_param(hgroup, hparam) "{{{
redir => hlstatus
exe "silent hi ".a:hgroup
try
exe "silent hi ".a:hgroup
catch /E411/
endtry
redir END
return matchstr(hlstatus, a:hparam.'\s*=\s*\zs\S\+')
endfunction "}}}