Migrating from Eclipse where doing this was a breeze. One of the most common templates I used was logging the value of last used variable.
E.g.
String foo="bar";
log tab>
->
String foo="bar";
log.debug("foo:{}",foo);
I tried using:
log.debug("$var$:{}",$var);
with both complete()
and completeSmart()
as variable types, but they both failed miserably, i.e. did not provide any sane autocomplete suggestions.