1. In "Settings / Styler Configurator... / User Define keywords", how can I add generic keywords, for example all words starting by "myFunctions_" (adding '*' or '.*' at the end of the word does not work) ?
2. In C++/Java, is it possible to comment and uncomment a part of code using "//" without using "Block toggle command" (right click) which comments uncommented lines but uncomments commented lines!
In the following example:
> // variables
> double a, b, c ;
> // operation
> a = b + c ;
using "Block toggle command" will result in
> variables
> // double a, b, c ;
> operation
> // a = b + c ;
whereas I'd like to get
> // // variables
> // double a, b, c ;
> // // operation
> // a = b + c ;
while commenting and
> // variables
> double a, b, c ;
> // operation
> a = b + c ;
while uncommenting
Thanks in advance,
Z
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi there,
I have 2 questions :
1. In "Settings / Styler Configurator... / User Define keywords", how can I add generic keywords, for example all words starting by "myFunctions_" (adding '*' or '.*' at the end of the word does not work) ?
2. In C++/Java, is it possible to comment and uncomment a part of code using "//" without using "Block toggle command" (right click) which comments uncommented lines but uncomments commented lines!
In the following example:
> // variables
> double a, b, c ;
> // operation
> a = b + c ;
using "Block toggle command" will result in
> variables
> // double a, b, c ;
> operation
> // a = b + c ;
whereas I'd like to get
> // // variables
> // double a, b, c ;
> // // operation
> // a = b + c ;
while commenting and
> // variables
> double a, b, c ;
> // operation
> a = b + c ;
while uncommenting
Thanks in advance,
Z