Merge pull request #253 from jesseduffield/hotfix/238-xdg-open-2

Update xdg-open command
This commit is contained in:
Jesse Duffield
2018-09-04 22:21:03 +10:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -33,7 +33,7 @@
```
os:
openCommand: 'bash -c \"xdg-open {{filename}} &>/dev/null &\"'
openCommand: 'sh -c "xdg-open {{filename}} >/dev/null"'
```
### OSX:

View File

@@ -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"'`)
}