mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-04-04 22:34:39 +02:00
more generic way of supporting custom pagers
This commit is contained in:
parent
355f1615ab
commit
54241d8ab9
@ -7,6 +7,7 @@ import (
|
|||||||
"os/exec"
|
"os/exec"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"regexp"
|
"regexp"
|
||||||
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
@ -1129,26 +1130,36 @@ func (c *GitCommand) GetReflogCommits() ([]*Commit, error) {
|
|||||||
return commits, nil
|
return commits, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *GitCommand) GetPager(width int) (string, error) {
|
func (c *GitCommand) ConfiguredPager() string {
|
||||||
pager := c.Config.GetUserConfig().GetString("git.pager")
|
if os.Getenv("GIT_PAGER") != "" {
|
||||||
switch pager {
|
return os.Getenv("GIT_PAGER")
|
||||||
case "":
|
|
||||||
return "", nil
|
|
||||||
case "diff-so-fancy":
|
|
||||||
return "diff-so-fancy", nil
|
|
||||||
case "ydiff":
|
|
||||||
return fmt.Sprintf("ydiff -s --wrap --width=%d", width/2-6), nil
|
|
||||||
case "delta":
|
|
||||||
return "delta --dark", nil
|
|
||||||
default:
|
|
||||||
return "", errors.New("pager not supported. Pick one of diff-so-fancy, ydiff, delta, or nothing")
|
|
||||||
}
|
}
|
||||||
|
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 {
|
||||||
|
useConfig := c.Config.GetUserConfig().GetBool("git.paging.useConfig")
|
||||||
|
if useConfig {
|
||||||
|
pager := c.ConfiguredPager()
|
||||||
|
return strings.Split(pager, "| less")[0]
|
||||||
|
}
|
||||||
|
|
||||||
|
templateValues := map[string]string{
|
||||||
|
"columnWidth": strconv.Itoa(width/2 - 6),
|
||||||
|
}
|
||||||
|
|
||||||
|
pagerTemplate := c.Config.GetUserConfig().GetString("git.paging.pager")
|
||||||
|
return utils.ResolvePlaceholderString(pagerTemplate, templateValues)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *GitCommand) colorArg() string {
|
func (c *GitCommand) colorArg() string {
|
||||||
pager := c.Config.GetUserConfig().GetString("git.pager")
|
return c.Config.GetUserConfig().GetString("git.paging.colorArg")
|
||||||
if pager == "diff-so-fancy" || pager == "" {
|
|
||||||
return "always"
|
|
||||||
}
|
|
||||||
return "never"
|
|
||||||
}
|
}
|
||||||
|
@ -258,6 +258,9 @@ func GetDefaultConfig() []byte {
|
|||||||
commitLength:
|
commitLength:
|
||||||
show: true
|
show: true
|
||||||
git:
|
git:
|
||||||
|
paging:
|
||||||
|
colorArg: always
|
||||||
|
useConfig: false
|
||||||
merging:
|
merging:
|
||||||
manualCommit: false
|
manualCommit: false
|
||||||
skipHookPrefix: 'WIP'
|
skipHookPrefix: 'WIP'
|
||||||
|
@ -28,10 +28,7 @@ func (gui *Gui) newCmdTask(viewName string, cmd *exec.Cmd) error {
|
|||||||
|
|
||||||
func (gui *Gui) newPtyTask(viewName string, cmd *exec.Cmd) error {
|
func (gui *Gui) newPtyTask(viewName string, cmd *exec.Cmd) error {
|
||||||
width, _ := gui.getMainView().Size()
|
width, _ := gui.getMainView().Size()
|
||||||
pager, err := gui.GitCommand.GetPager(width)
|
pager := gui.GitCommand.GetPager(width)
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
if pager == "" {
|
if pager == "" {
|
||||||
// if we're not using a custom pager we don't need to use a pty
|
// if we're not using a custom pager we don't need to use a pty
|
||||||
|
Loading…
x
Reference in New Issue
Block a user