File tree Expand file tree Collapse file tree 2 files changed +13
-5
lines changed Expand file tree Collapse file tree 2 files changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,16 @@ This extension is available for free in the [Visual Studio Code Marketplace](htt
13
13
#### Only activates with .py files
14
14
15
15
* Highlight anything in the editor
16
- * Press Cmd+L (Mac), or Ctrl+L (Windows)
17
- * The output (on a new line) will be: print'variable: ', variable
16
+ * Press ` Cmd+Shift+L ` (Mac), or ` Ctrl+Shift+L ` (Windows)
17
+ * The output (on a new line) will be: ` print'variable: ', variable `
18
+
19
+ #### Keyboard Shortcut
20
+ By default the keyboard shortcut is ` Cmd+Shift+L ` or ` Ctrl+Shift+L `
21
+ If this shortcut interferes with another extension or system wide Shortcut, you may change it in the ` Keyboard Shortcuts Setting ` .
22
+
23
+ Press ` Cmd+P ` or ` Ctrl+P ` and type in ` Open Keyboard Shortcuts ` .
24
+ Search for ` Print Python Selection ` and click on the ` pen icon ` .
25
+ This is where you can enter any ` Shortcut ` you choose.
18
26
19
27
## License
20
28
[ MIT License] ( LICENSE )
Original file line number Diff line number Diff line change 2
2
"name" : " python-quick-print" ,
3
3
"displayName" : " Python Quick Print" ,
4
4
"description" : " Quickly print out log messages" ,
5
- "version" : " 0.0.4 " ,
5
+ "version" : " 0.0.5 " ,
6
6
"publisher" : " AhadCove" ,
7
7
"author" : {
8
8
"name" : " Ahad Cove"
45
45
"keybindings" : [
46
46
{
47
47
"command" : " extension.print" ,
48
- "key" : " ctrl+l" ,
49
- "mac" : " cmd+l" ,
48
+ "key" : " ctrl+shift+ l" ,
49
+ "mac" : " cmd+shift+ l" ,
50
50
"when" : " editorTextFocus"
51
51
}
52
52
]
You can’t perform that action at this time.
0 commit comments