SideBarEnhancements插件官網(wǎng)上有提到這個問題: F12 key (Please note that from version 2.122104 this package no longers provides the key , you need to manually add it to your sublime-keymap file (see next section)) 當(dāng)然也有提到解決方法: F12 key conflict On Sublime Text 3 F12 key is bound to "goto_definition" command by default. This package was conflicting with that key, this no longers happens. You need to manually add the keys now: Go to Preferences -> Package Settings -> Side Bar -> Key Bindings - User and add any of the following: [ { "keys": ["f12"], "command": "side_bar_open_in_browser" , "args":{"paths":[], "type":"testing", "browser":""} }, { "keys": ["alt+f12"], "command": "side_bar_open_in_browser", "args":{"paths":[], "type":"production", "browser":""} }, { "keys": ["ctrl+t"], "command": "side_bar_new_file2" }, { "keys": ["f2"], "command": "side_bar_rename" }, ] 大致意思是f12與st自帶的goto_definition快捷鍵有沖突,,需要用戶手動添加f12瀏覽器預(yù)覽快捷鍵,添加方式代碼,如上所示,! 官網(wǎng)詳細(xì)介紹該問題的頁面鏈接: 游客,如果您要查看本帖隱藏內(nèi)容請回復(fù) |
|