Qtcreator left side of assignment snippet
Unsolved
Qt Creator and other tools
-
Hello,
I come from Java and IntelliJ-IDEA.
There is a cool feature that this IDE have that I failed to find in qt creator: automatic left side snippetExample:
double a =1;
a+1 # <- here qtcreator knows a+1 is a double so it should be able to give me on a CTRL+Alt+V (that's the IntelliJ shortcut)
[double ... = a+1;]With this you hardly have to type left side of assignations again...
-
@statquant said:
[double ... = a+1;]
That is what the suggestion give?
So that all you type is B
and you get
double B = a+1;Else im not sure what it suggests :)