getFileCommandsHelp function

String getFileCommandsHelp()

Returns the file commands section.

Implementation

String getFileCommandsHelp() {
  return '''
<cyan>**Files & Sessions**</cyan>
  <yellow>**.execute**</yellow> <path>  Run as fresh program *(like .start-execute)*
  <yellow>**.file**</yellow> <path>     Run in current env *(like .start-file)*
  <yellow>**.script**</yellow> <path>   Load file line-by-line *(*.script.txt)*
  <yellow>**.load**</yellow> <path>     Replay file with output *(*.replay.txt)*
  <yellow>**.replay**</yellow> <path>   Replay file silently *(*.replay.txt)*
  <yellow>**.session**</yellow> <name>  Switch to session *(*.session.txt)*
  <yellow>**.reset**</yellow> [name]    Reset env, optionally replay session/file''';
}