On 2013-04-12, [email protected] wrote:
> Hello Christian,

> Anyway I've already found two buglets :) (unless your patch was just a
> proof of concept): first, branches won't work:
> 
>     set paragraphs=/^\s*$\|whatever
> 
> doesn't find anything; ...

I haven't installed the patch, so I can't test this, but your branch
is probably not working because of 

    :help :set-args
    :help option-backslash

You should use either

    set paragraphs=/^\\s*$\\|whatever

or

    let &paragraphs = '/^\s*$\|whatever'

See

    :help :let-option

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

--- 
You received this message because you are subscribed to the Google Groups 
"vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to