I apologize for the general redundancy of this post, and I especially apologize if it’s an exact redundancy, but I couldn’t find any posts that addressed my specific issue in a helpful way.
I’m running Sublime 3.2.2 on Windows 10, and currently editing a .txt file, and have the following syntax-specific settings:
// These settings override both User and Default settings for the Plain text syntax
{
“spell_check”: true,
“translate_tabs_to_spaces”: false,
“auto_match_enabled”: false,
“gutter”: false,
“word_separators”: “./\”’-:,.;<>~!@#$%^&*|+=`~?",
}
However, even after having edited word_separators, I still get text wrapping in between parens and the text after the paren. For example, right now I have “column contains (regardless of whether” wrapping as
column contains (
regardless of whether
which is obviously less than ideal. I don’t know if this is a bug / missing feature in Sublime 3, or if I’m just missing the setting that would fix this. Help would be greatly appreciated.