Sublime Forum

Keyboard shortcut stopped working properly

#1

When I hit ctrl+k, ctrl+b, instead of hiding the sidebar like it has since I installed ST, it now inserts ```` instead. I looked in the default bindings and the following is what is present

	{ "keys": "ctrl+k", "ctrl+b"], "command": "toggle_side_bar" },

It appears that ctrl+k is what is creating the ````, but I have no idea why! Any ideas?

0 Likes

#2

Have you tried logging commands (sublime.log_commands(True)) to see what is actually running. You may also want to try github.com/CodeEffect/BoundKeys to see if multiple packages are mapping to the the same key command.

0 Likes

#3

Where do I place the log command? Thanks!

0 Likes

#4

In the sublime text console. You can open this through “View -> Show Console”

0 Likes