Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Double click highlight variable Sublime Text 3 include $

I wanted ST3 to include the "$" when selecting PHP files so I edited word_separators by removing $ as such :

"word_separators": "./\\()\"':,.;<>~!@#%^&*|+=[]{}`~?"

And now it highlight the whole varibale including the "$" when double clicking a variable. However, now Sublime is not matching/outlining those variables using the default match_selection functionality.
Any thoughts on this? Is there a setting I am missing. Much appreciated.

like image 325
user3350731 Avatar asked Sep 01 '14 22:09

user3350731


1 Answers

Please see my answer to this question for an in-depth look at the effect of changing word_separators and various find and select options. Long story short, altering word_separators changes the behavior of double-clicking, as you noted, but other operations, including match_selection, rely on an internal word separators list that apparently can't be altered by the user. So, when you double-click to select a PHP variable, you'll get the $ selected, but other instances of the variable won't be highlighted. They will be selected when using CtrlD to make multiple selections, however:

$wp_error ctrl+d

Additionally, when using the Find dialog, other instances will be highlighted:

Find $wp_error

So, to address your original problem, if you need to see all the instances of the currently-selected variable, set "find_selected_text": true in your user preferences, double-click to select your variable of interest, then hit CtrlF (F on OS X) to view all occurrences. Just make sure you don't have the regex search button selected, as $ has a special meaning in regexes.

like image 53
MattDMo Avatar answered Oct 19 '22 17:10

MattDMo