Text Mode Interface

Text Mode is Jahro's keyboard-driven view: run Unity console commands and read live game logs in the same panel, without switching between windows.


Type a command, see its output alongside your Debug.Log stream, then filter down to what matters. Autocomplete, history, search, and log type filters are all accessible from the keyboard.

jahro text mode interface

Command Input

Entering Commands

Type directly into the input field at the bottom of the console:

command-name [parameters...]

Examples:

  • reset-game
  • spawn-enemy 5
  • set-difficulty Hard
  • tp 10 2.5 -7

Autocomplete

Start typing any command name and press Tab to cycle through matches.

jahro autocomplete

The autocomplete panel shows:

  • Matching commands as you type
  • Expected parameters in gray text
  • Adds a space after inserting the command name
  • Matches from any position in the name

Command History

Navigate previously run commands with the arrow keys:

KeyAction
ArrowPrevious command
ArrowNext command
EnterExecute command
TabOpen autocomplete / cycle forwards
Shift+TabCycle autocomplete backwards

Log Filtering

Filter by Type

Use the filter buttons in the top bar to show or hide log types. Each type has a distinct color:

jahro log filters
TypeColorMaps to
DebugWhiteDebug.Log
WarningOrangeDebug.LogWarning
ErrorRedDebug.LogError and exceptions
CommandsGreenCommand output and results

Type in the search bar to filter log entries by content. Results update as you type.

Log Selection

Click Select to enter selection mode, then use checkboxes to pick individual log entries.

jahro log selection

From there you can copy entries to clipboard or bulk-clear them from the session. Click Done to exit.

Stack Traces

jahro log stacktrace

Click any log entry that has an attached stack trace to expand it. Click again to collapse.

Clearing Logs

Click Clear to remove all logs from the current session.


  • Commands — Define and register commands with [JahroCommand]
  • Logs — Advanced log management and filtering
  • Visual Mode — Browse and run commands without typing
  • Snapshots — Capture and share a full debug session

Last updated: April 1, 2026