Sublime Forum

How to make: Word Wrap column ► Automatic ALWAYS/AUTOMATICALLY?

#1

i need a way to automate the word wrap column width and set it perpetually to my preferred setting “automatic” any ideas how to go about it?

0 Likes

#2

From the Default.sublime-settings file, maybe changing these in your user preferences and ensuring there are no syntax-specific overrides on them will help you:

// Disables horizontal scrolling if enabled.
// May be set to true, false, or "auto", where it will be disabled for
// source code, and otherwise enabled.
"word_wrap": "auto",

// Set to a value other than 0 to force wrapping at that column rather than the
// window width
"wrap_width": 0,
0 Likes

#3

Thanks for your response. Two problems:

  1. I cannot seem to be able to edit the default.sublime-settings file
  2. These settings are already in there.

So we’re back to square 1 i guess

0 Likes

#4

##See:

#Change Default settings in Sublime Text 3

0 Likes