Skip to content

Commit be2a6d1

Browse files
committed
Remove custom "Remote Upload" command
1 parent e4e3b38 commit be2a6d1

File tree

2 files changed

+1
-10
lines changed

2 files changed

+1
-10
lines changed

package.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -175,12 +175,6 @@
175175
"icon": "$(beaker)",
176176
"enablement": "pioProjectReady"
177177
},
178-
{
179-
"command": "platformio-ide.remoteUpload",
180-
"title": "Remote Upload",
181-
"category": "PlatformIO",
182-
"enablement": "pioProjectReady"
183-
},
184178
{
185179
"command": "platformio-ide.rebuildProjectIndex",
186180
"title": "Rebuild IntelliSense Index",

src/project/tasks.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -235,13 +235,10 @@ export default class ProjectTaskManager {
235235
vscode.commands.registerCommand('platformio-ide.upload', () =>
236236
_runTask('Upload')
237237
),
238-
vscode.commands.registerCommand('platformio-ide.test', () => _runTask('Test')),
239238
vscode.commands.registerCommand('platformio-ide.clean', () => _runTask('Clean')),
239+
vscode.commands.registerCommand('platformio-ide.test', () => _runTask('Test')),
240240
vscode.commands.registerCommand('platformio-ide.serialMonitor', () =>
241241
_runTask('Monitor')
242-
),
243-
vscode.commands.registerCommand('platformio-ide.remoteUpload', () =>
244-
_runTask('Remote Upload')
245242
)
246243
);
247244
}

0 commit comments

Comments
 (0)