1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-12 04:23:03 +02:00
lazygit/pkg/commands/oscommands/os_windows.go

13 lines
264 B
Go
Raw Normal View History

package oscommands
func getPlatform() *Platform {
return &Platform{
2020-09-29 12:38:31 +02:00
OS: "windows",
CatCmd: "type",
Shell: "cmd",
ShellArg: "/c",
EscapedQuote: `\"`,
FallbackEscapedQuote: "\\'",
2018-09-01 06:33:01 +02:00
}
}