1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-03-25 22:01:14 +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 20:38:31 +10:00
OS: "windows",
CatCmd: "type",
Shell: "cmd",
ShellArg: "/c",
EscapedQuote: `\"`,
FallbackEscapedQuote: "\\'",
2018-09-01 14:33:01 +10:00
}
}