SublimeText / CTags

CTags support for Sublime Text
MIT License
987 stars 167 forks source link

Definition highlighted even with select_searched_symbol disabled #332

Open mwean opened 6 years ago

mwean commented 6 years ago

When I jump to a definition, the matching text is highlighted:

image

Even though I thought I had disabled it in my settings:

# CTags.sublime-settings
{
  "debug": true,
  "autocomplete": true,

  "command": "/usr/local/bin/ctags",

  "tag_file": ".tags",

  "select_searched_symbol": false,

  "opts": [
    "--languages=ruby",
    "--exclude='**/stylesheets/*'",
    "--exclude='**/app/views/*'",
    "--exclude='**/bin/*'",
    "--exclude='**/db/*'",
    "--exclude='**/tmp/*'",
    "--exclude='**/log/*'",
    "--exclude='*.js'",
    "--exclude=.git",
    "--exclude='**/node_modules/*'"
  ]
}

Am I missing something, or is this a different behavior? Thanks!

zydeon commented 6 years ago

+1