There is a code like:

<input-select name="price" focus="focusonprice" ng-model="object.price" type="text" currency="object.currency" select="object.default_currency" choices="object.currency_choices" errors="form.price.$error" label="[['Цена'|translate]]" id="offer-price"> </input-select> 

however, after saving it is transformed into:

  <input-select name="price" focus="focusonprice" ng-model="object.price" type="text" currency="object.currency" select="object.default_currency" choices="object.currency_choices" errors="form.price.$error" label="[['Цена'|translate]]" id="offer-price"> </input-select> 

How to make so that the tag does not fold into 1 line?

  • If the answer is correct and helped, you should mark it as correct. (c) - Iurii Golskyi

1 answer 1

You need in your File > Preferences > Settings settings File > Preferences > Settings or by pressing Ctrl + , set the parameter "editor.formatOnSave": false , by default it is set to true .