yay even more different change

This commit is contained in:
FloppyDiskDrive 2017-11-21 17:47:56 -06:00
parent 04ce34c099
commit 50ba8da321

View file

@ -2,6 +2,8 @@
using System.Windows.Forms; using System.Windows.Forms;
using ShiftOS.Engine; using ShiftOS.Engine;
using ShiftOS.Main.Terminal; using ShiftOS.Main.Terminal;
using System.Linq;
using System.Collections.Generic;
namespace ShiftOS.Main.ShiftOS.Apps namespace ShiftOS.Main.ShiftOS.Apps
{ {
@ -14,6 +16,7 @@ namespace ShiftOS.Main.ShiftOS.Apps
public bool RunningCommand = false; public bool RunningCommand = false;
public bool WaitingResponse = false; public bool WaitingResponse = false;
public string InputReturnText = ""; public string InputReturnText = "";
public List<string> c = TerminalBackend.commandBuffer;
// The below variables makes the terminal... a terminal! // The below variables makes the terminal... a terminal!
string OldText = ""; string OldText = "";
@ -127,6 +130,11 @@ namespace ShiftOS.Main.ShiftOS.Apps
Print(); Print();
e.Handled = true; e.Handled = true;
} }
} else if (e.KeyCode == Keys.Up)
{
if (c.Count == 0) return;
termmain.AppendText(c.Last());
}
}
} }
} }