mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-01-08 19:38:51 +01:00
history item types
This commit is contained in:
parent
3a8f3dab38
commit
15178248a2
@ -583,6 +583,9 @@ class InputModel {
|
||||
uiSubmitCommand() : void {
|
||||
mobx.action(() => {
|
||||
let commandStr = this.getCurLine();
|
||||
if (commandStr.trim() == "") {
|
||||
return;
|
||||
}
|
||||
this.clearCurLine();
|
||||
GlobalModel.clearInfoMsg(true);
|
||||
GlobalModel.submitRawCommand(commandStr, true);
|
||||
|
@ -127,6 +127,8 @@ type HistoryItem = {
|
||||
cmdid : string,
|
||||
cmdstr : string,
|
||||
remove : boolean,
|
||||
remote : RemotePtrType,
|
||||
ismetacmd : boolean,
|
||||
};
|
||||
|
||||
type CmdRemoteStateType = {
|
||||
|
Loading…
Reference in New Issue
Block a user