Como desabilitar o quebra automática de texto no Sublime Text 3?

1

Em Sublime Text 2 havia uma opção de menu para desabilitar a quebra de linha, agora parece que a quebra de linha é forçada sem a capacidade de desativá-la.

Eutenteidefinir:"word_wrap": false em configurações específicas da sintaxe do usuário , mas essa opção não tem efeito.

Então, como desabilito a quebra automática de palavras para o arquivo fornecido?

    
por kenorb 25.02.2018 / 16:53

1 resposta

2

Como faço para desativar a quebra de linha para o arquivo fornecido?

I've tried to set: "word_wrap": false in User's Syntax Specific settings, but this option takes no effect.

De acordo com várias fontes on-line, deve haver uma vírgula final , após false.

"word_wrap": "false",

Você também pode definir a largura do envoltório para um número grande:

"wrap_width": 9999,

Fonte SUBLIME TEXT 3: como desativar a quebra de linha na saída de compilação? - Suporte Técnico - Sublime Forum

E também há Word Wrap: Toggle da paleta de comando:

The Word Wrap: Toggle item from the Command Palette uses the toggle_setting command. This sets the preference directly on the view, which indeed overrides any default, user or syntax specific preferences.

You can return to the user/syntax specific settings behavior by closing and reopening any files where the Word Wrap: Toggle item from the Command Palette was used, as the view specific settings will be lost when the file is closed. Alternatively, you could achieve the same thing without closing any files by opening the ST Python console (View menu -> Show Console) and typing view.settings().erase('word_wrap') Enter. This will clear the view-specific setting for the active tab.

You could also get it to clear the setting from all open views in the current window at once, using [view.settings().erase('word_wrap') for view in window.views()] Enter.

Fonte Texto sublime: quebra de linha do menu desativando as configurações específicas da sintaxe , responder por Keith Hall

    
por 25.02.2018 / 18:22