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

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!