Sublime Forum

Ctrl + d not working anymore

#1

a while ago the shortcut ctrl + d stopped working. I didn’t change any of the keybindings.

It’s still set to:

{ "keys": "ctrl+d"], "command": "find_under_expand" },

and I don’t have any user keybindings defined.

I’m using Sublime Text 2 Build 2200 on Ubuntu 12.04.

Any idea?

0 Likes

#2

Got any plugins installed?

You can run sublime.log_commands(True) and sublime.log_input(True) in the console and it should show you what it’s doing.

0 Likes

SOLVED: Ctrl+d not working, no conflict reported by findKeyConflicts
#3

Thanks for the quick reply. I have quite a few plugins installed (can I output a list of all plugins?).

When I set the debugging on I get these outputs on hittin ctrl + d:

key evt: control+d
command: complete

0 Likes

#4

Likely it’s one of the plugins that has changed control+d to complete then. You could just copy the correct keybinding into your user keybindings and it should override.

As for listing packages, you can ls your packages directory which on linux is ~/.config/sublime-text-2/Packages/

0 Likes

#5

a “grep -r “ctrl+d” .” in the package directory revealed:

the iToDo Plugin did overwrite it.

Thank you very much for your help

0 Likes

#6

Hey - I know this is old post - but I found it when looking for solution to MY issue of the same nature -
the difference - Im on the latest v3 - I did the log to view - and ctrl+d is NOT EVEN registering with the system, nothing happens no log nothing - any thing else I type is logged…crtl+c or +n all show in log…

0 Likes

#7

Some other application or the OS is capturing the key press:

0 Likes