mirror of
https://github.com/jesseduffield/lazygit.git
synced 2026-09-12 16:46:25 -04:00
Merge pull request #253 from jesseduffield/hotfix/238-xdg-open-2
Update xdg-open command
This commit is contained in:
commit
59003c8bbf
|
|
@ -33,7 +33,7 @@
|
|||
|
||||
```
|
||||
os:
|
||||
openCommand: 'bash -c \"xdg-open {{filename}} &>/dev/null &\"'
|
||||
openCommand: 'sh -c "xdg-open {{filename}} >/dev/null"'
|
||||
```
|
||||
|
||||
### OSX:
|
||||
|
|
|
|||
|
|
@ -4,5 +4,5 @@ package config
|
|||
func GetPlatformDefaultConfig() []byte {
|
||||
return []byte(
|
||||
`os:
|
||||
openCommand: 'bash -c \"xdg-open {{filename}} &>/dev/null &\"'`)
|
||||
openCommand: 'sh -c "xdg-open {{filename}} >/dev/null"'`)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue