You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Add Windows (amd64/arm64) to CI workflow and GoReleaser config
- Fix shell detection and hook scripts for Git Bash and PowerShell
- Fix path separator handling in worktree management (git returns
forward slashes on Windows, Go uses backslashes)
- Skip tests with hardcoded Unix paths on Windows
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <[email protected]>
@@ -277,12 +302,41 @@ wtp shell-init fish | source
277
302
```
278
303
279
304
> **Note:** Bash completion requires bash-completion v2. On macOS, install
280
-
> Homebrew’s Bash 5.x and `bash-completion@2`, then
305
+
> Homebrew's Bash 5.x and `bash-completion@2`, then
281
306
> `source /opt/homebrew/etc/profile.d/bash_completion.sh` (or the path shown
282
307
> after installation) before enabling the one-liner above.
283
308
284
309
After reloading your shell you get the same experience as Homebrew users.
285
310
311
+
#### Windows Setup
312
+
313
+
**PowerShell:**
314
+
315
+
Add to your PowerShell profile (`$PROFILE` - typically `~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1` or `~\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1`):
316
+
317
+
```powershell
318
+
# Add wtp shell integration (completion + cd functionality)
0 commit comments