Skip to content

Commit 0d02ae9

Browse files
committed
0.0.5: Hot key to cmd+shift+l
1 parent 44c2e6e commit 0d02ae9

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,16 @@ This extension is available for free in the [Visual Studio Code Marketplace](htt
1313
#### Only activates with .py files
1414

1515
* 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.
1826

1927
## License
2028
[MIT License](LICENSE)

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "python-quick-print",
33
"displayName": "Python Quick Print",
44
"description": "Quickly print out log messages",
5-
"version": "0.0.4",
5+
"version": "0.0.5",
66
"publisher": "AhadCove",
77
"author": {
88
"name": "Ahad Cove"
@@ -45,8 +45,8 @@
4545
"keybindings": [
4646
{
4747
"command": "extension.print",
48-
"key": "ctrl+l",
49-
"mac": "cmd+l",
48+
"key": "ctrl+shift+l",
49+
"mac": "cmd+shift+l",
5050
"when": "editorTextFocus"
5151
}
5252
]

0 commit comments

Comments
 (0)