1package common
 2
 3import (
 4	"time"
 5
 6	"github.com/charmbracelet/bubbles/key"
 7)
 8
 9// Some constants were copied from https://docs.gitea.io/en-us/config-cheat-sheet/#git-git
10
11const (
12	GlamourMaxWidth  = 120
13	RepoNameMaxWidth = 32
14	MaxDiffLines     = 1000
15	MaxDiffFiles     = 100
16	MaxPatchWait     = time.Second * 3
17)
18
19var (
20	PrevPage = key.NewBinding(
21		key.WithKeys("pgup", "b", "u"),
22		key.WithHelp("pgup", "prev page"),
23	)
24	NextPage = key.NewBinding(
25		key.WithKeys("pgdown", "f", "d"),
26		key.WithHelp("pgdn", "next page"),
27	)
28)