4

I am trying to figure out how you use this shortcut, but I am having trouble. What does it mean by "Ctrl K, l"?

I have tried various combinations but in vain.

enter image description here

2540625
  • 11,022
  • 8
  • 52
  • 58
Vennsoh
  • 4,853
  • 5
  • 26
  • 41

1 Answers1

9

Here is the default config file: Default (Windows).sublime-keymap

And here is the string which creates this shortcut:

{ "keys": ["ctrl+k", "l"], "command": "sublimelinter_lint" },

That means you press ctrl+k and then press l. It's a sequence key bind that you're allowed to make in your custom keymap file as well.

Make sure to have ctrl released while pressing l.


P.S. it's a small L and not capital i. How do I know? I copy pasted it to sublime text, selected and pressed ctrl+k, ctrl+u.

This is a default keymap: { "keys": ["ctrl+k", "ctrl+u"], "command": "upper_case" },

Sergey Telshevsky
  • 12,077
  • 6
  • 55
  • 78