1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-30 03:23:08 +03:00

Add separate open command for links and check if branch exists on remote before opening pull request link.

This commit is contained in:
Kristijan Husak
2018-10-17 14:20:15 +02:00
parent c69fce2e9d
commit 990dc8c4ea
11 changed files with 49 additions and 11 deletions

View File

@ -4,5 +4,6 @@ package config
func GetPlatformDefaultConfig() []byte {
return []byte(
`os:
openCommand: 'sh -c "xdg-open {{filename}} >/dev/null"'`)
openCommand: 'sh -c "xdg-open {{filename}} >/dev/null"'
openLinkCommand: 'sh -c "xdg-open {{link}} >/dev/null"'`)
}