Sublime Forum

Cannot type capital letter 'Q'

#1

I’m using stable build 4126 of sublime text, trying to learn python. I’m running into a weird issue where I’m unable to type the capital letter Q:

quit
UIT
#quit

UIT

This happens if I create txt file, .py file or anything. Also happens if I type in caps in notepad and paste into Sublime text. Also happens if I type in lower case and convert to upper. Any ideas are welcome, this is super annoying.

UPDATE: fixed by upgrading to build 4180. The letters mentioned above were not visible but could be seen if pasted into another text file fwiw

0 Likes

#2

same thing for letters Z, B and M! cannot type capital

0 Likes

#3

I’d suggest to

  1. check if those key combos are received by ST by calling sublime.log_input(True) from console and check console output while typing affected letters. If nothing is printed OS or any other application consumes those key bindings.
  2. check if a plugin tries calling a command by calling sublime.log_commands(True) and checking console output again.
1 Like