The shortcut key to open console in Sublime Text 2 does not work

前端 未结 20 1981
故里飘歌
故里飘歌 2020-12-23 16:23

I\'m using Sublime Text 2 (version 2.0.1) on Windows 7, and I haven\'t installed any plugins for this software. I can use menu to open the console, but I cannot open console

20条回答
  •  星月不相逢
    2020-12-23 17:08

    I am using Sublime Text 3 build 3156 on Windows 8.1 system. My keyboard layout is us keyboard style. After enabling sublime.log_input(True), I find that pressing Ctrl+` shows nothing in the sublime text console.

    Eventually, I just use Ctrl+' to bring up the console. Go to Preferences -> Key Bindings, add the following to user key binding setting:

    { "keys": ["ctrl+'"], "command": "show_panel", "args": {"panel": "console", "toggle": true} },
    

    Then everything works fine.

提交回复
热议问题