// Copyright (c) 2026 Enzo Lombardi
// SPDX-License-Identifier: MIT
//! Application command ids.
//!
//! Turbo Vision reserves the low range for built-ins (`CM_QUIT`, `CM_CLOSE`,
//! `CM_TILE`, ...). These start at 1000 to stay clear of them.
use CommandId;
/// File > Open capture...
pub const CM_OPEN_CAPTURE: CommandId = 1000;
/// File > Save As...
pub const CM_SAVE_AS: CommandId = 1001;
/// View > Show thinking
pub const CM_SHOW_THINKING: CommandId = 1002;
/// View > Markdown
pub const CM_SHOW_MARKDOWN: CommandId = 1003;
/// View > Clear window
pub const CM_CLEAR_WINDOW: CommandId = 1004;