%bl0ck_qu0te%
Parainiciantes
Coleoseguinteemsettings.json
//Placeyoursettingsinthisfiletooverwritethedefaultsettings{"editor.wrappingColumn": 0 }
Isso, é mais simples, mas provavelmente teremos uma interface de usuário de código aberto para as configurações do json.
Para usuário intermediário
Se você já tem settings.json
, basta adicionar
"editor.wrappingColumn": 0
O resultado de settings.json
pode ser como a imagem ou como segue:
{
// Controls if quick suggestions should show up or not while typing
"editor.quickSuggestions": true,
// Controls the delay in ms after which quick suggestions will show up
"editor.quickSuggestionsDelay": 10,
// Controls after how many characters the editor will wrap to the next line. Setting this to 0 turns on viewport width wrapping
"editor.wrappingColumn": 0,
// Controls the indentation of wrapped lines. Can be one of 'none', 'same' or 'indent'.
"editor.wrappingIndent": "same",
// Controls if the editor should automatically format the line after typing
"editor.formatOnType": false
}
Como as configurações estão em JSON, as últimas configurações são sem a vírgula ,
como você vê nas configurações padrão e settings.json
substituem todas as configurações padrão