MolecularMan
MolecularMan

Reputation: 257

Object literal braces in html IntelliJ

How can I setup IntelliJ IDEA to format code like

hello {{name}}

to

hello {{ name }}

for Angular templates?

Upvotes: 0

Views: 250

Answers (1)

lena
lena

Reputation: 93808

If Auto-insert white space in the interpolation is enabled in Settings | Editor | General | Smart Keys, spaces are inserted when completing braces. There is, however, no way to insert them on code reformatting

Upvotes: 2

Related Questions