sublime 如何关掉 代码定义提示?

发觉sublime 会卡死。所以需要关掉。
在哪儿设置呢?

clipboard.png

阅读 7.1k
2 个回答
Also new in 3124 is Show Definition, which will show where a symbol is defined when hovering over it with the mouse. This makes use of the new on_hover API, and can be controlled via the show_definitions setting. — https://www.sublimetext.com/b...

Show Definition 这个功能是在 3124 版本之后加入的,同时配置中也加了一个选项 show_definitions 允许关闭。

用户配置

Menu > Preferences > Settings (Preferences.sublime-settings - User)

{
    "show_definitions": false
}

项目配置

Menu > Project > Edit Project

{
    "settings": {
        "show_definitions": false
    }
}
宣传栏