summaryrefslogtreecommitdiffstats
path: root/pkg/constants/links.go
blob: fddfe06e2f03de9490e57751bca035af348f802b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package constants

type Docs struct {
	CustomPagers      string
	CustomCommands    string
	CustomKeybindings string
	Keybindings       string
	Undoing           string
	Config            string
	Tutorial          string
}

var Links = struct {
	Docs        Docs
	Issues      string
	Donate      string
	Discussions string
	RepoUrl     string
}{
	RepoUrl:     "https://github.com/jesseduffield/lazygit",
	Issues:      "https://github.com/jesseduffield/lazygit/issues",
	Donate:      "https://github.com/sponsors/jesseduffield",
	Discussions: "https://github.com/jesseduffield/lazygit/discussions",
	Docs: Docs{
		CustomPagers:      "https://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Pagers.md",
		CustomKeybindings: "https://github.com/jesseduffield/lazygit/blob/master/docs/keybindings/Custom_Keybindings.md",
		CustomCommands:    "https://github.com/jesseduffield/lazygit/wiki/Custom-Commands-Compendium",
		Keybindings:       "https://github.com/jesseduffield/lazygit/blob/master/docs/keybindings",
		Undoing:           "https://github.com/jesseduffield/lazygit/blob/master/docs/Undoing.md",
		Config:            "https://github.com/jesseduffield/lazygit/blob/master/docs/Config.md",
		Tutorial:          "https://youtu.be/VDXvbHZYeKY",
	},
}