mirror of
				https://github.com/jesseduffield/lazygit.git
				synced 2025-11-03 01:13:18 +03:00 
			
		
		
		
	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}}`,
 | 
						|
	}
 | 
						|
}
 |