How to select variables (not text) with the same name?

前端 未结 2 1341
囚心锁ツ
囚心锁ツ 2021-01-05 23:38

When selecting variable f, the editor highlights other occurrences of the variable. So far so good, but when trying to add them to the selection list with

2条回答
  •  耶瑟儿~
    2021-01-06 00:22

    You can modify the word_separators option to not include your variable prefix (i.e. $ for PHP) so when you double-click a variable name, it will select $ as well.

    This option is located in the file Preferences.sublime-settings in your Default folder. I recommend adding the modified setting to Preferences.sublime-settings in your User folder rather than changing the defaults.

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


    Edit:

    Unfortunately, currently there's no way to do a Find & Replace within a certain scope. The issue has been raised here, and you can vote for it as a feature request on Sublime's UserEcho forum.

提交回复
热议问题