Skip to content
    ↑↓ select↵ openesc close
    English中文
    Minhir

    Tabs

    v0.2.0UI & Themes
    opencode-tabs

    Session tabs for the OpenCode TUI

    Actively maintained
    GitHub stars

    5

    +1 in 30 days

    Monthly installs

    339

    24 in 7 days

    Composite scoreSCORE

    43.5

    Multi-signal model

    Last commit

    14 days ago

    2026-08-05

    Install and configure

    opencode.json

    Writes to this project's opencode.json — applies to this repository only.

    opencode.json

    {
      "$schema": "https://opencode.ai/config.json",
      "plugin": ["opencode-tabs@0.2.0"]
    }

    opencode loads npm dependencies through its embedded runtime on startup and caches them locally — no manual global install needed.

    NPM Version GitHub License

    Session tabs for the OpenCode TUI.

    • Quick navigation - Switch between sessions with a single click.
    • Session status - See which sessions are busy or need attention.
    OpenCode tabs demo

    Install

    For the current project:

    opencode plugin opencode-tabs
    

    Or globally:

    opencode plugin opencode-tabs --global
    

    Or, add the package directly to .opencode/tui.json:

    {
      "$schema": "https://opencode.ai/tui.json",
      "plugin": ["opencode-tabs"]
    }
    

    Restart OpenCode after the installation.

    Keyboard navigation

    The Next tab, Previous tab, and Close tab commands are available in the command palette. They have no keybindings by default. To open a new tab, use OpenCode's built-in New session command. Check the OpenCode keybinds documentation.

    To enable keyboard navigation, configure the plugin with options:

    {
      "$schema": "https://opencode.ai/tui.json",
      "plugin": [
        [
          "opencode-tabs",
          {
            "keybinds": {
              "next": "<leader>]",
              "previous": "<leader>[",
              "close": "<leader>w"
            }
          }
        ]
      ]
    }
    

    Restart OpenCode after changing the configuration.