Skip to content

Commit 4248643

Browse files
improved refactor commands, working on folder explorer for WindowView, added refactor_export_command.py
1 parent f4b2021 commit 4248643

13 files changed

+795
-39
lines changed

Context.sublime-menu

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,36 @@
8181
}
8282
},
8383
{ "caption": "-" },
84+
{
85+
"caption": "Export",
86+
"children": [
87+
{
88+
"caption": "Function",
89+
"command": "refactor",
90+
"args": {
91+
"case": "export",
92+
"type": "function"
93+
}
94+
},
95+
{
96+
"caption": "Class",
97+
"command": "refactor",
98+
"args": {
99+
"case": "export",
100+
"type": "class"
101+
}
102+
},
103+
{
104+
"caption": "Variable",
105+
"command": "refactor",
106+
"args": {
107+
"case": "export",
108+
"type": "variable"
109+
}
110+
}
111+
]
112+
},
113+
{ "caption": "-" },
84114
{
85115
"caption": "Safe Copy",
86116
"command": "refactor",

0 commit comments

Comments
 (0)