Sublime Forum

Base File.sublime-settings comments

#1

Just getting into configuring sublime, and the double negatives in the settings comments makes things harder to understand than it should be. It’s a minor nitpick, but figure I’d throw it out there. e.g.

// Set to false to not highlight square brackets. This only takes effect if
// matchBrackets is true
"match_brackets_sqaure": true,

…what? :smile:. This might be easier to parse:

// Set to true to highlight square brackets. This only takes effect if
// matchBrackets is true
"match_brackets_square": true,

…even better would be:

// If true, square bracket pairs that contain the cursor are highlighted.
// This only takes effect if match_brackets is true
"match_brackets_square": true,
0 Likes