[Solved] Snippet with parameter in Qt Creator?
Qt Creator and other tools
2
Posts
1
Posters
2.1k
Views
1
Watching
-
I'm reading about the new goodies in Qt Creator.
I like the way we can add our own code snippets using autocompletion and local storage ( I don't know if it was already there, but i didn't use it before in Qt Creator)
I wondered if it's possible to use parameters in a snippit?
Eg.
Void foo( int $PARAMETER$) {
int width = $PARAMETER$;
...
}when you insert the snippit you get an input to change the parameter with what you want?