mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-05-05 20:48:43 +00:00
31 lines
866 B
TypeScript
31 lines
866 B
TypeScript
import { Command } from '@theia/core/lib/common/command';
|
|
|
|
/**
|
|
* @deprecated all these commands should go under contributions and have their command, menu, keybinding, and toolbar contributions.
|
|
*/
|
|
export namespace ArduinoCommands {
|
|
|
|
export const TOGGLE_COMPILE_FOR_DEBUG: Command = {
|
|
id: 'arduino-toggle-compile-for-debug'
|
|
};
|
|
|
|
/**
|
|
* Unlike `OPEN_SKETCH`, it opens all files from a sketch folder. (ino, cpp, etc...)
|
|
*/
|
|
export const OPEN_SKETCH_FILES: Command = {
|
|
id: 'arduino-open-sketch-files'
|
|
};
|
|
|
|
export const OPEN_BOARDS_DIALOG: Command = {
|
|
id: 'arduino-open-boards-dialog'
|
|
};
|
|
|
|
export const TOGGLE_ADVANCED_MODE: Command = {
|
|
id: 'arduino-toggle-advanced-mode'
|
|
};
|
|
export const TOGGLE_ADVANCED_MODE_TOOLBAR: Command = {
|
|
id: 'arduino-toggle-advanced-mode-toolbar'
|
|
};
|
|
|
|
}
|