Example #1
0
        /// <summary>
        /// Changes the current dir to the given dir.
        /// </summary>
        public static void ChangeDir(HashDir dir)
        {
            var data = DataHolder.DeviceData.CurrentDevice.FileSystem;

            data.CurrentDir = dir;

            TerminalUtil.UpdateCurrentPathLabel();
            TerminalUtil.UpdateCommandBuffer();
        }
Example #2
0
 public static void UpdateDeviceRelatedGUI()
 {
     TerminalUtil.UpdateCurrentPathLabel();
     TerminalUtil.ChangeToAvailableCommandsBuffer();
     TerminalUtil.ResetCommandBufferIndex();
 }