Hi,
I have just found that vb indentation has error:
if isBlablabla() then
blablabla
elseif isTada() then
Tada
end if
It should be:
if isBlablabla() then
blablabla
elseif isTada() then
Tada
end if
The fix is fairly easy. In the indent/vb.vim change line 66 from
elseif this_line =~? '^\s*\<\(end\|else\|until\|loop\|next\|wend\)
\>'
to
elseif this_line =~? '^\s*\<\(end\|else\|elseif\|until\|loop\|next
\|wend\)\>'
I am not sure of the way fixes of that kind are included into vim
runtime.
Maxim.
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_dev" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---