That's all the info I was able to find. Info appreciated.
--
Dan Heller
http://www.danheller.com/
is it possible what you are really after is the 'nohlsearch'
option?
sc
No, showmatch jumps the cursor to the matching bracket, et al. when the
closing bracket is typed. See :help showmatch
When I place the cursor on a bracket, the corresponding one's background
is change to cyan. This is not controlled by showmatch. Is this the
behaviour you're talking about?
--
Just my 0.00000002 million dollars worth,
Shawn
The key to success is being too stupid to realize you can fail.
No, showmatch jumps the cursor to the matching bracket, et al. when the
On Tue, 2008-12-02 at 12:59 -0800, Dan Heller wrote:
> To be clear, vim is doing the showmatch behavior -- it puts the cursor
> on
> BOTH the open and close bracket/brace/paren -- and I want to turn this
> off.
> I can't. My "showmatch" setting is off, but the behavior doesn't turn
> off.
> What's wrong?
closing bracket is typed. See :help showmatch
When I place the cursor on a bracket, the corresponding one's background
is change to cyan. This is not controlled by showmatch. Is this the
behaviour you're talking about?
showmatch jumps the cursor. I think you're talking about a plugin call
pi_paren.txt (see :help pi_paren ) To turn it off
:NoMatchParen
To turn it back on
:DoMatchParen
Not irrelevant at all, since the screenshot shows that you weren't
talking about 'showmatch' at all, but the 'matchparen' plugin...
> showmatch jumps the cursor. I think you're talking about a plugin call
> pi_paren.txt (see :help pi_paren ) To turn it off
>
> :NoMatchParen
>
> To turn it back on
>
> :DoMatchParen
See :help matchparen - which tells you that to disable the plugin
completely, you can use the (unintuitive, I know) command
let loaded_matchparen = 1
in your ~/.vimrc
~Matt
I think you're talking about a plugin call
pi_paren.txt (see :help pi_paren ) To turn it off
:NoMatchParen
In vim, type
:help matchparen
and search for "avoid loading this plugin"
Or perhaps the matchparen standard plugin has become enabled. You
can run the :NoMatchParen command to shut it off. ":he matchparen"
has instructions for how to disable it altogether.
You can also find out where 'showmatch' might be getting set by
setting the 'verbose' option to non-zero or using the ":verbose"
command. You can see ":he :set-verbose" for more info on that one.
By putting
let g:loaded_matchparen = 1
in your .vimrc. Most plugins prevent double-loading by testing if
g:loaded_SomePlugin exists; if so, loading is aborted. Hence, with this
command you're telling matchparen not to bother loading.
Regards,
Chip Campbell