Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sublimelinter (PC): How to trigger this shortcut ("Lint This View"): Ctrl K, l?

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

like image 347
Vennsoh Avatar asked Jan 11 '23 13:01

Vennsoh


1 Answers

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" },

like image 52
Sergey Telshevsky Avatar answered Jan 29 '23 08:01

Sergey Telshevsky