2020-09-29 12:03:39 +02:00
|
|
|
package commands
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/jesseduffield/lazygit/pkg/utils"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (c *GitCommand) ConfiguredPager() string {
|
|
|
|
if os.Getenv("GIT_PAGER") != "" {
|
|
|
|
return os.Getenv("GIT_PAGER")
|
|
|
|
}
|
|
|
|
if os.Getenv("PAGER") != "" {
|
|
|
|
return os.Getenv("PAGER")
|
|
|
|
}
|
|
|
|
output, err := c.OSCommand.RunCommandWithOutput("git config --get-all core.pager")
|
|
|
|
if err != nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
trimmedOutput := strings.TrimSpace(output)
|
|
|
|
return strings.Split(trimmedOutput, "\n")[0]
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *GitCommand) GetPager(width int) string {
|
2020-10-03 06:54:55 +02:00
|
|
|
useConfig := c.Config.GetUserConfig().Git.Paging.UseConfig
|
2020-09-29 12:03:39 +02:00
|
|
|
if useConfig {
|
|
|
|
pager := c.ConfiguredPager()
|
|
|
|
return strings.Split(pager, "| less")[0]
|
|
|
|
}
|
|
|
|
|
|
|
|
templateValues := map[string]string{
|
|
|
|
"columnWidth": strconv.Itoa(width/2 - 6),
|
|
|
|
}
|
|
|
|
|
2020-10-03 06:54:55 +02:00
|
|
|
pagerTemplate := c.Config.GetUserConfig().Git.Paging.Pager
|
2020-09-29 12:03:39 +02:00
|
|
|
return utils.ResolvePlaceholderString(pagerTemplate, templateValues)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *GitCommand) colorArg() string {
|
2020-10-03 06:54:55 +02:00
|
|
|
return c.Config.GetUserConfig().Git.Paging.ColorArg
|
2020-09-29 12:03:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *GitCommand) GetConfigValue(key string) string {
|
2020-11-24 23:52:00 +02:00
|
|
|
value, _ := c.getLocalGitConfig(key)
|
|
|
|
// we get an error if the key doesn't exist which we don't care about
|
|
|
|
|
|
|
|
if value != "" {
|
|
|
|
return value
|
2020-09-29 12:03:39 +02:00
|
|
|
}
|
2020-11-24 23:52:00 +02:00
|
|
|
|
|
|
|
value, _ = c.getGlobalGitConfig(key)
|
|
|
|
return value
|
2020-09-29 12:03:39 +02:00
|
|
|
}
|