Skip to content

Commit ab80da5

Browse files
author
Oscar Ibatullin
committed
initial commit
0 parents  commit ab80da5

8 files changed

+570
-0
lines changed

Default (Linux).sublime-keymap

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[
2+
//{ "keys": [], "command": "clear_all_breakpoints" },
3+
4+
{ "keys": ["ctrl+shift+b"], "command": "toggle_breakpoint" },
5+
6+
{ "keys": ["alt+g"], "command": "goto_breakpoint" }
7+
]

Default (OSX).sublime-keymap

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[
2+
//{ "keys": [], "command": "clear_all_breakpoints" },
3+
4+
{ "keys": ["ctrl+shift+b"], "command": "toggle_breakpoint" },
5+
6+
{ "keys": ["super+g"], "command": "goto_breakpoint" }
7+
]

Default (Windows).sublime-keymap

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[
2+
//{ "keys": [], "command": "clear_all_breakpoints" },
3+
4+
{ "keys": ["ctrl+shift+b"], "command": "toggle_breakpoint" },
5+
6+
{ "keys": ["alt+g"], "command": "goto_breakpoint" }
7+
]

Default.sublime-commands

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[
2+
{ "caption": "Breakpoints: Toggle", "command": "toggle_breakpoint" },
3+
4+
{ "caption": "Breakpoints: Goto", "command": "goto_breakpoint" },
5+
6+
{ "caption": "Breakpoints: Clear All", "command": "clear_all_breakpoints" }
7+
]

Main.sublime-menu

Lines changed: 113 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
[
2+
{
3+
"id": "goto",
4+
"caption": "Goto",
5+
"children":
6+
[
7+
{
8+
"caption": "Goto Breakpoint...",
9+
"command": "goto_breakpoint"
10+
}
11+
]
12+
},
13+
{
14+
"id": "tools",
15+
"caption": "Tools",
16+
"children":
17+
[
18+
{
19+
"caption": "Breakpoints",
20+
"children":
21+
[
22+
{
23+
"caption": "Clear All",
24+
"command": "clear_all_breakpoints",
25+
"mnemonic": "C"
26+
}
27+
]
28+
}
29+
]
30+
},
31+
{
32+
"id": "preferences",
33+
"caption": "Preferences",
34+
"mnemonic": "n",
35+
"children":
36+
[
37+
{
38+
"caption": "Package Settings",
39+
"mnemonic": "P",
40+
"id": "package-settings",
41+
"children":
42+
[
43+
{
44+
"caption": "PythonBreakpoints",
45+
"children":
46+
[
47+
{
48+
"caption": "Settings – Default",
49+
"command": "open_file",
50+
"args": {"file": "${packages}/PythonBreakpoints/PythonBreakpoints.sublime-settings"}
51+
},
52+
{
53+
"caption": "Settings – User",
54+
"command": "open_file",
55+
"args": {"file": "${packages}/User/PythonBreakpoints.sublime-settings"}
56+
},
57+
{ "caption": "-" },
58+
{
59+
"caption": "Key Bindings – Default",
60+
"command": "open_file",
61+
"args": {
62+
"file": "${packages}/PythonBreakpoints/Default (OSX).sublime-keymap",
63+
"platform": "OSX"
64+
}
65+
},
66+
{
67+
"caption": "Key Bindings – Default",
68+
"command": "open_file",
69+
"args": {
70+
"file": "${packages}/PythonBreakpoints/Default (Linux).sublime-keymap",
71+
"platform": "Linux"
72+
}
73+
},
74+
{
75+
"caption": "Key Bindings – Default",
76+
"command": "open_file",
77+
"args": {
78+
"file": "${packages}/PythonBreakpoints/Default (Windows).sublime-keymap",
79+
"platform": "Windows"
80+
}
81+
},
82+
{
83+
"caption": "Key Bindings – User",
84+
"command": "open_file",
85+
"args": {
86+
"file": "${packages}/User/Default (OSX).sublime-keymap",
87+
"platform": "OSX"
88+
}
89+
},
90+
{
91+
"caption": "Key Bindings – User",
92+
"command": "open_file",
93+
"args": {
94+
"file": "${packages}/User/Default (Linux).sublime-keymap",
95+
"platform": "Linux"
96+
}
97+
},
98+
{
99+
"caption": "Key Bindings – User",
100+
"command": "open_file",
101+
"args": {
102+
"file": "${packages}/User/Default (Windows).sublime-keymap",
103+
"platform": "Windows"
104+
}
105+
},
106+
{ "caption": "-" }
107+
]
108+
}
109+
]
110+
}
111+
]
112+
}
113+
]

0 commit comments

Comments
 (0)