Files
lazygit/pkg/commands/os_windows.go
T

12 lines
207 B
Go

package commands
func getPlatform() *Platform {
return &Platform{
os: "windows",
shell: "cmd",
shellArg: "/c",
escapedQuote: "\\\"",
openCommand: "start {{filename}}",
}
}