mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-10 11:10:18 +02:00
e4e16fa38e
We do this for consistency with the edit settings. The old names are kept as a fallback for now.
10 lines
215 B
Go
10 lines
215 B
Go
package config
|
|
|
|
// GetPlatformDefaultConfig gets the defaults for the platform
|
|
func GetPlatformDefaultConfig() OSConfig {
|
|
return OSConfig{
|
|
Open: `start "" {{filename}}`,
|
|
OpenLink: `start "" {{link}}`,
|
|
}
|
|
}
|