mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-08-18 23:59:23 +00:00
46 lines
1.0 KiB
TypeScript
46 lines
1.0 KiB
TypeScript
import { Command } from '@theia/core/lib/common/command';
|
|
|
|
export namespace ArduinoCommands {
|
|
|
|
export const VERIFY: Command = {
|
|
id: 'arduino-verify',
|
|
label: 'Verify Sketch'
|
|
}
|
|
|
|
export const UPLOAD: Command = {
|
|
id: 'arduino-upload',
|
|
label: 'Upload Sketch'
|
|
}
|
|
|
|
export const SHOW_OPEN_CONTEXT_MENU: Command = {
|
|
id: 'arduino-show-open-context-menu',
|
|
label: 'Open Sketch'
|
|
}
|
|
|
|
export const OPEN_FILE_NAVIGATOR: Command = {
|
|
id: 'arduino-open-file-navigator'
|
|
}
|
|
|
|
export const OPEN_SKETCH: Command = {
|
|
id: 'arduino-open-file'
|
|
}
|
|
|
|
export const SAVE_SKETCH: Command = {
|
|
id: 'arduino-save-file'
|
|
}
|
|
|
|
export const NEW_SKETCH: Command = {
|
|
id: "arduino-new-sketch",
|
|
label: 'New Sketch',
|
|
category: 'File'
|
|
}
|
|
|
|
export const OPEN_BOARDS_DIALOG: Command = {
|
|
id: "arduino-open-boards-dialog"
|
|
}
|
|
|
|
export const TOGGLE_ADVANCED_MODE: Command = {
|
|
id: "arduino-toggle-advanced-mode"
|
|
}
|
|
}
|