On 2012-01-07, Gary Johnson wrote:

> If that is the cause of the problem you're seeing, too, then a
> solution is to create an after file, ~/.vim/after/ftplugin/html.vim,
> and put in it this line:
> 
>     let b:match_words .= ",(:),{:},[:]"

Correction:  That should be

    let b:match_words .= ",(:),{:},\\[:\\]"

To be on the safe side, you should probably use this:

    if exists("b:match_words")
        let b:match_words .= ",(:),{:},\\[:\\]"
    endif

Regards,
Gary

-- 
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

Reply via email to