Skip to content

Commit 891865e

Browse files
committed
change goto_breakpoint keyboard shortcut for Linux and Windows
1 parent 9e2f527 commit 891865e

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

Default (Linux).sublime-keymap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33

44
{ "keys": ["ctrl+shift+b"], "command": "toggle_breakpoint" },
55

6-
{ "keys": ["alt+g"], "command": "goto_breakpoint" }
6+
{ "keys": ["ctrl+shift+g"], "command": "goto_breakpoint" }
77
]

Default (Windows).sublime-keymap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33

44
{ "keys": ["ctrl+shift+b"], "command": "toggle_breakpoint" },
55

6-
{ "keys": ["alt+g"], "command": "goto_breakpoint" }
6+
{ "keys": ["ctrl+shift+g"], "command": "goto_breakpoint" }
77
]

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ From GitHub: Clone this repository into your version/platform specific Packages
2525
`Command Palette` > `Python Breakpoints: ...`
2626

2727
* `Toggle` a breakpoint at current line (or `ctrl+shift+b`)
28-
* `Goto` a selected breakpoint (or `alt+g` for Windows and Linux, `ctrl+shift+g` for OS X, or `Menu` > `Goto` > `Goto Python Breakpoint...`)
28+
* `Goto` a selected breakpoint (or `ctrl+shift+g`, or `Menu` > `Goto` > `Goto Python Breakpoint...`)
2929
* `Clear All` breakpoints in current file (or `Menu` > `Tools` > `Breakpoints` > `Clear All Python Breakpoints`)
3030

3131
## Settings
@@ -35,5 +35,4 @@ From GitHub: Clone this repository into your version/platform specific Packages
3535
## Caveats
3636

3737
* only space indentation is supported
38-
* with non-PEP8 one-liners or files with no imports your mileage may vary
39-
38+
* your mileage may vary with non-PEP8 one-liners or code without import statements

0 commit comments

Comments
 (0)