File tree Expand file tree Collapse file tree 2 files changed +1
-10
lines changed
Expand file tree Collapse file tree 2 files changed +1
-10
lines changed Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments