Skip to content

Commit

Permalink
change goto_breakpoint keyboard shortcut for Linux and Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
obormot committed Jun 20, 2014
1 parent 9e2f527 commit 891865e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Default (Linux).sublime-keymap
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@

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

{ "keys": ["alt+g"], "command": "goto_breakpoint" }
{ "keys": ["ctrl+shift+g"], "command": "goto_breakpoint" }
]
2 changes: 1 addition & 1 deletion Default (Windows).sublime-keymap
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@

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

{ "keys": ["alt+g"], "command": "goto_breakpoint" }
{ "keys": ["ctrl+shift+g"], "command": "goto_breakpoint" }
]
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ From GitHub: Clone this repository into your version/platform specific Packages
`Command Palette` > `Python Breakpoints: ...`

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

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

* only space indentation is supported
* with non-PEP8 one-liners or files with no imports your mileage may vary

* your mileage may vary with non-PEP8 one-liners or code without import statements

0 comments on commit 891865e

Please sign in to comment.