Created
October 21, 2013 20:17
-
-
Save pid/7090243 to your computer and use it in GitHub Desktop.
Sublime Text keystroke toggle line numbers show/hide
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"keys": ["ctrl+alt+l"], | |
"command": "toggle_setting", | |
"args": { | |
"setting": "line_numbers" | |
} |
good stuff!
I couldn't get it working in the original version. I know that this should work. So I stared at it and then I noticed that there were three (3) curly brackets. And simply not allowed. Added the forth curly bracket, voila !!!!, worked like a charm!
[
{ "keys": ["ctrl+alt+l"], "command": "toggle_setting",
"args": { "setting": "line_numbers" }},
]
Hi, any way to do it for all tabs in the current window? At the moment it only toggles line numbers in the active tab...
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks!