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?
Match brace not working for all types
-
- CodeLite Enthusiast
- Posts: 17
- Joined: Fri Jun 18, 2010 1:52 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Match brace not working for all types
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
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
-
- 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
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 [].
That's how it is called in Codelite. And yes, i mean jumping between braces.
It only works for {} bracktes, but not for () or [].
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Match brace not working for all types
Indeed, like I mentioned above: only the curly braces are supported.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 [].
Please submit a FR at sourceforge for this
Eran
Make sure you have read the HOW TO POST thread
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Match brace not working for all types
No need to open a feature request for this - it is now implemented in trunk
Eran
Eran
Make sure you have read the HOW TO POST thread
-
- 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
Thanks alot.