Change Eclipse Variable Navigation Order Code Template Template

I have an Eclipse code template, let's say that:

${type} ${name} = ${cursor} 

So the generated code will be:

Sample generated code

As you can see, after selecting the type code generation variable, but I want to select name first:

Wanted generated code

This may seem like a silly question in this case, but for a template with many variables , the definition of which depends on others, it makes sense.

So my question is:

Can I specify the navigation order for template variables?

+4
source share

All Articles