Reputation: 257
How can I setup IntelliJ IDEA to format code like
hello {{name}}
to
hello {{ name }}
for Angular templates?
Upvotes: 0
Views: 250
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