鍍金池/ 問答/網(wǎng)絡(luò)安全  HTML/ sublime 如何關(guān)掉 代碼定義提示?

sublime 如何關(guān)掉 代碼定義提示?

發(fā)覺sublime 會卡死。所以需要關(guān)掉。
在哪兒設(shè)置呢?

clipboard.png

回答
編輯回答
九年囚
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 允許關(guān)閉。

用戶配置

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

{
    "show_definitions": false
}

項目配置

Menu > Project > Edit Project

{
    "settings": {
        "show_definitions": false
    }
}
2017年6月16日 09:20