How to set default value of variable in live templ

2020-06-30 04:39发布

There could be a little misunterstanding in live templates in Intellij IDEA. I mean default values for variables in templates.

Suppose we have this live template

enter image description here enter image description here

What I expect here, that when calling this template (type jqon and press TAB) I will see default values already typed which I can change or leave as it is. Like this

enter image description here

But no. I have empty strings instead of default values

enter image description here

Why?

2条回答
祖国的老花朵
2楼-- · 2020-06-30 05:05

I was wrong about Default value field. I don't need this in my case. I need to fill Expression field.

If I want just paste some string as default value I should put this string in quote in Expression. So now my variable settings look this way

enter image description here

And everything works how I want!

查看更多
疯言疯语
3楼-- · 2020-06-30 05:09

If you want a hardcoded string as the default value field (in the edit variables dialog), it needs to be in double quotes ("ii"). Putting a string there with no quotes (ii) does not result in an error, but also does not work.

查看更多
登录 后发表回答