Match brace not working for all types

CodeLite installation/troubleshooting forum
fnar
CodeLite Enthusiast
Posts: 17
Joined: Fri Jun 18, 2010 1:52 pm
Genuine User: Yes
IDE Question: C++
Contact:

Match brace not working for all types

Post by fnar »

CodeLite version: v2.5.2.4031
Operating system: Ubuntu 10.04


I have the problem that match brace is only working on these brackets: {}

All other brackets will just not work, they are however highlighted (start / end bracket).


Has anyone an idea what the problem could be?
User avatar
eranif
CodeLite Plugin
Posts: 6373
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Match brace not working for all types

Post by eranif »

What do you mean: "match brace" ?

codelite only implements the following:

- highlight matched pairs (should work for all types of braces)
- jump between braces (Ctrl-{ / Ctrl-})

Anything other than that simply not implmented
Eran
Make sure you have read the HOW TO POST thread
fnar
CodeLite Enthusiast
Posts: 17
Joined: Fri Jun 18, 2010 1:52 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Match brace not working for all types

Post by fnar »

Menu - Edit - Match brace

That's how it is called in Codelite. And yes, i mean jumping between braces.
It only works for {} bracktes, but not for () or [].
User avatar
eranif
CodeLite Plugin
Posts: 6373
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Match brace not working for all types

Post by eranif »

fnar wrote:That's how it is called in Codelite. And yes, i mean jumping between braces.
It only works for {} bracktes, but not for () or [].
Indeed, like I mentioned above: only the curly braces are supported.

Please submit a FR at sourceforge for this

Eran
Make sure you have read the HOW TO POST thread
User avatar
eranif
CodeLite Plugin
Posts: 6373
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Match brace not working for all types

Post by eranif »

No need to open a feature request for this - it is now implemented in trunk
Eran
Make sure you have read the HOW TO POST thread
fnar
CodeLite Enthusiast
Posts: 17
Joined: Fri Jun 18, 2010 1:52 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Match brace not working for all types

Post by fnar »

Thanks alot.
Post Reply