Skip to content

gymynnym/vscode-gitui

Repository files navigation

vscode-gitui

screenshot

A VSCode extension to open GitUI in an integrated terminal.

Installation

Important

Requires GitUI to be installed and available on your PATH.

There are 2 ways to install this extension:

  1. Install from the Visual Studio Code Marketplace
  2. Download VSIX file from GitHub Releases

Commands

  • vscode-gitui.open : Open GitUI in terminal
  • vscode-gitui.reload : Reload GitUI on PATH

Keybindings

Default Keybindings

  • ctrl+alt+g : Open GitUI (Linux/Windows)
  • ctrl+cmd+g : Open GitUI (macOS)

VSCodeVim Keybindings: for nerds (Example)

{
  "vim.normalModeKeyBindingsNonRecursive": [
    {
      "before": ["space", "g", "g"],
      "commands": [{ "command": "vscode-gitui.open" }]
    },
    {
      "before": ["space", "g", "r"],
      "commands": [{ "command": "vscode-gitui.reload" }]
    }
  ]
}

Properties

  • vscode-gitui.useWSL : Enable if using GitUI via WSL (Windows only).