feat: 命令右键菜单.
This commit is contained in:
@@ -75,15 +75,19 @@ export interface TerminalShortcutSetting {
|
||||
}
|
||||
|
||||
// 终端快捷键
|
||||
export interface TerminalShortcutKey {
|
||||
item: string;
|
||||
enabled: boolean;
|
||||
export interface ShortcutKey {
|
||||
ctrlKey: boolean;
|
||||
shiftKey: boolean;
|
||||
altKey: boolean;
|
||||
code: string;
|
||||
}
|
||||
|
||||
// 终端快捷键
|
||||
export interface TerminalShortcutKey extends ShortcutKey {
|
||||
item: string;
|
||||
enabled: boolean;
|
||||
}
|
||||
|
||||
// 终端快捷键编辑
|
||||
export interface TerminalShortcutKeyEditable extends TerminalShortcutKey {
|
||||
editable: boolean;
|
||||
|
||||
Reference in New Issue
Block a user