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?
How to make: Word Wrap column ► Automatic ALWAYS/AUTOMATICALLY?
kingkeith
#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
Thanks for your response. Two problems:
- I cannot seem to be able to edit the
default.sublime-settings
file - These settings are already in there.
So we’re back to square 1 i guess
0 Likes