Skip to content

Commit c937e10

Browse files
Copilotivanviragine
andcommitted
Move Antigravity to last in doc listings alongside other tools
Co-authored-by: ivanviragine <9950727+ivanviragine@users.noreply.github.com>
1 parent e1efa15 commit c937e10

4 files changed

Lines changed: 13 additions & 13 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ While `git worktree` is powerful, it's verbose and manual. `git gtr` adds qualit
135135
- **Simple commands** - Create and manage worktrees with intuitive CLI
136136
- **Repository-scoped** - Each repo has independent worktrees
137137
- **Configuration over flags** - Set defaults once, use simple commands
138-
- **Editor integration** - Open worktrees in Cursor, VS Code, Antigravity, Zed, and more
138+
- **Editor integration** - Open worktrees in Cursor, VS Code, Zed, Antigravity, and more
139139
- **AI tool support** - Launch Aider, Claude Code, or other AI coding tools
140140
- **Smart file copying** - Selectively copy configs/env files to new worktrees
141141
- **Hooks system** - Run custom commands after create/remove
@@ -323,7 +323,7 @@ All configuration is stored via `git config`. For team settings, create a `.gtrc
323323
### Quick Setup
324324

325325
```bash
326-
# Set your editor (antigravity, cursor, vscode, zed)
326+
# Set your editor (cursor, vscode, zed, antigravity)
327327
git gtr config set gtr.editor.default cursor
328328

329329
# Set your AI tool (aider, auggie, claude, codex, continue, copilot, cursor, gemini, opencode)

docs/configuration.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -134,10 +134,10 @@ git gtr config set gtr.provider github
134134
## Editor Settings
135135

136136
```bash
137-
# Default editor: antigravity, cursor, vscode, zed, or none
137+
# Default editor: cursor, vscode, zed, antigravity, or none
138138
gtr.editor.default = cursor
139139

140-
# Workspace file for Antigravity/VS Code/Cursor (relative path from worktree root)
140+
# Workspace file for VS Code/Cursor/Antigravity (relative path from worktree root)
141141
# If set, opens the workspace file instead of the folder
142142
# If not set, auto-detects *.code-workspace files in worktree root
143143
# Set to "none" to disable workspace lookup entirely
@@ -146,14 +146,14 @@ gtr.editor.workspace = project.code-workspace
146146

147147
**Setup editors:**
148148

149-
- **Antigravity**: Install from [antigravity.google](https://antigravity.google), `agy` command available after installation
150149
- **Cursor**: Install from [cursor.com](https://cursor.com), enable shell command
151150
- **VS Code**: Install from [code.visualstudio.com](https://code.visualstudio.com), enable `code` command
151+
- **Antigravity**: Install from [antigravity.google](https://antigravity.google), `agy` command available after installation
152152
- **Zed**: Install from [zed.dev](https://zed.dev), `zed` command available automatically
153153

154154
**Workspace files:**
155155

156-
Antigravity, VS Code, and Cursor support `.code-workspace` files for multi-root workspaces, custom settings, and recommended extensions. When opening a worktree:
156+
VS Code, Cursor, and Antigravity support `.code-workspace` files for multi-root workspaces, custom settings, and recommended extensions. When opening a worktree:
157157

158158
1. If `gtr.editor.workspace` is set to a path, opens that file (relative to worktree root)
159159
2. If set to `none`, disables workspace lookup (always opens folder)

lib/adapters.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ _editor_define_terminal() {
253253
}
254254
}
255255

256-
# Resolve workspace file for Antigravity/VS Code/Cursor editors
256+
# Resolve workspace file for VS Code/Cursor/Antigravity editors
257257
# Returns the workspace file path if found, empty otherwise
258258
resolve_workspace_file() {
259259
local worktree_path="$1"

lib/commands/help.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ Special:
5656
Use '1' to open the main repo root: git gtr editor 1
5757
5858
Available editors:
59-
antigravity, atom, cursor, emacs, idea, nano, nvim, pycharm, sublime,
60-
vim, vscode, webstorm, zed, none (or any command in your PATH)
59+
atom, cursor, emacs, idea, nano, nvim, pycharm, sublime, vim, vscode,
60+
webstorm, zed, antigravity, none (or any command in your PATH)
6161
6262
Examples:
6363
git gtr editor my-feature # Uses default editor
@@ -593,10 +593,10 @@ CONFIGURATION OPTIONS:
593593
gtr.worktrees.prefix Worktree folder prefix (default: "")
594594
gtr.defaultBranch Default branch (default: auto)
595595
gtr.editor.default Default editor
596-
Options: antigravity, cursor, vscode, zed, idea,
597-
pycharm, webstorm, vim, nvim, emacs, sublime,
598-
nano, atom, none
599-
gtr.editor.workspace Workspace file for Antigravity/VS Code/Cursor
596+
Options: cursor, vscode, zed, idea, pycharm,
597+
webstorm, vim, nvim, emacs, sublime, nano,
598+
atom, antigravity, none
599+
gtr.editor.workspace Workspace file for VS Code/Cursor/Antigravity
600600
(relative path, auto-detects, or "none")
601601
gtr.ai.default Default AI tool
602602
Options: aider, auggie, claude, codex, continue,

0 commit comments

Comments
 (0)