Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ctrl + U not working to deselect in Sublime Text 3

Tags:

sublimetext3

In Sublime Text 2, when using the Ctrl + D feature to select more of the same, you can use Ctrl + U to go back one. This isn't working in Sublime Text 3. Any ideas?

like image 774
kfrncs Avatar asked Oct 08 '13 14:10

kfrncs


People also ask

How do I select the same word in sublime?

If you have your mouse caret (blinking pipe | ) on a word and you press ctrl-d (Windows) or cmd-d (Mac) you can select the current word & if you press ctrl-d afterwards that it will select other repeat occurences of your selection.


1 Answers

Are you using Emmet? I am having the same problem and there is probably a conflict with the Emmet plugin because the console says:

key evt: control+u
command: run_emmet_action {"action": "update_image_size"}

Solution which worked for me:

  1. open the file named Emmet.sublime-settings,
  2. find "disabled_keymap_actions": "", and
  3. replace it with "disabled_keymap_actions": "update_image_size",

Found here: https://github.com/sergeche/emmet-sublime#overriding-keyboard-shortcuts

like image 65
tgogos Avatar answered Sep 21 '22 15:09

tgogos