Skip to content

Commit 736049e

Browse files
committed
clean up menus, fix package paths when installed with Package Control
1 parent 81b5ce2 commit 736049e

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

Default.sublime-commands

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[
2-
{ "caption": "Breakpoints: Toggle", "command": "toggle_breakpoint" },
2+
{ "caption": "Python Breakpoints: Toggle", "command": "toggle_breakpoint" },
33

4-
{ "caption": "Breakpoints: Goto", "command": "goto_breakpoint" },
4+
{ "caption": "Python Breakpoints: Goto", "command": "goto_breakpoint" },
55

6-
{ "caption": "Breakpoints: Clear All", "command": "clear_all_breakpoints" }
6+
{ "caption": "Python Breakpoints: Clear All", "command": "clear_all_breakpoints" }
77
]

Main.sublime-menu

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"children":
66
[
77
{
8-
"caption": "Goto Breakpoint...",
8+
"caption": "Goto Python Breakpoint...",
99
"command": "goto_breakpoint"
1010
}
1111
]
@@ -20,7 +20,7 @@
2020
"children":
2121
[
2222
{
23-
"caption": "Clear All",
23+
"caption": "Clear All Python Breakpoints",
2424
"command": "clear_all_breakpoints",
2525
"mnemonic": "C"
2626
}
@@ -41,13 +41,13 @@
4141
"children":
4242
[
4343
{
44-
"caption": "PythonBreakpoints",
44+
"caption": "Python Breakpoints",
4545
"children":
4646
[
4747
{
4848
"caption": "Settings – Default",
4949
"command": "open_file",
50-
"args": {"file": "${packages}/PythonBreakpoints/PythonBreakpoints.sublime-settings"}
50+
"args": {"file": "${packages}/Python Breakpoints/PythonBreakpoints.sublime-settings"}
5151
},
5252
{
5353
"caption": "Settings – User",
@@ -59,23 +59,23 @@
5959
"caption": "Key Bindings – Default",
6060
"command": "open_file",
6161
"args": {
62-
"file": "${packages}/PythonBreakpoints/Default (OSX).sublime-keymap",
62+
"file": "${packages}/Python Breakpoints/Default (OSX).sublime-keymap",
6363
"platform": "OSX"
6464
}
6565
},
6666
{
6767
"caption": "Key Bindings – Default",
6868
"command": "open_file",
6969
"args": {
70-
"file": "${packages}/PythonBreakpoints/Default (Linux).sublime-keymap",
70+
"file": "${packages}/Python Breakpoints/Default (Linux).sublime-keymap",
7171
"platform": "Linux"
7272
}
7373
},
7474
{
7575
"caption": "Key Bindings – Default",
7676
"command": "open_file",
7777
"args": {
78-
"file": "${packages}/PythonBreakpoints/Default (Windows).sublime-keymap",
78+
"file": "${packages}/Python Breakpoints/Default (Windows).sublime-keymap",
7979
"platform": "Windows"
8080
}
8181
},

0 commit comments

Comments
 (0)