Skip to main content

Terminal

Execute commands directly in your IDE's terminal from your mobile device.

Overview

The Terminal feature provides an interactive command-line interface to your IDE. Send commands remotely and see output in real-time—useful for quick checks, running scripts, or executing CLI tools without returning to your desk.

Prerequisites

Before using the Terminal:

Accessing the Terminal

  1. Connect to your IDE from the mobile app
  2. From the IDE dashboard, tap Terminal
  3. The terminal screen opens with a dark terminal-style interface

Terminal screen

Using the Terminal

Sending Commands

  1. Type your command in the input field at the bottom
  2. Tap the Send button (or press Enter)
  3. Output appears in the terminal view above

Features

  • Real-time Output: See command output as it streams from the IDE
  • Auto-scroll: Terminal automatically scrolls to show latest output
  • Text Selection: Long-press to select and copy output text
  • Clear Output: Tap the trash icon to clear the terminal history
  • Monospace Display: Terminal-style font for proper code formatting

Example Commands

CommandDescription
ls -laList files in current directory
git statusCheck git repository status
./gradlew tasksList available Gradle tasks
npm run buildRun npm build script

Limitations

  • Commands execute in the IDE's working directory
  • Long-running commands show output as it streams
  • Interactive commands (requiring user input) may not work as expected
  • Command history is session-based (clears when disconnecting)

Tips

  • Use terminal for quick, one-off commands
  • For complex operations, consider using Run Configurations or Git Operations
  • Terminal output is selectable—useful for copying error messages

Troubleshooting

Command not executing:

  • Ensure you're connected to the IDE
  • Check that the IDE terminal is not already running a blocking command

Output not appearing:

  • Verify your connection status
  • Try clearing the terminal and re-running the command