mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-10-08 22:52:12 +02:00
- Remove old-style build tags (the +build syntax has become obsolete with 1.17) - Remove redundant build tags from '*_windows.go' files
12 lines
241 B
Go
12 lines
241 B
Go
//go:build !windows && !linux
|
|
|
|
package config
|
|
|
|
// GetPlatformDefaultConfig gets the defaults for the platform
|
|
func GetPlatformDefaultConfig() OSConfig {
|
|
return OSConfig{
|
|
Open: "open -- {{filename}}",
|
|
OpenLink: "open {{link}}",
|
|
}
|
|
}
|