summaryrefslogtreecommitdiffstats
path: root/pkg/constants
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2021-04-11 23:32:20 +1000
committerJesse Duffield <jessedduffield@gmail.com>2021-04-12 21:48:08 +1000
commit3b7e7a7f56f3e89b7a0bc9b7674901b1b672d213 (patch)
treec5e3ed71386afe503997a17e0abb28058caf083b /pkg/constants
parent06a8eb115c100816e3ceccff875010a84416beee (diff)
add random tip to command log
Diffstat (limited to 'pkg/constants')
-rw-r--r--pkg/constants/links.go33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkg/constants/links.go b/pkg/constants/links.go
new file mode 100644
index 000000000..fddfe06e2
--- /dev/null
+++ b/pkg/constants/links.go
@@ -0,0 +1,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",
+ },
+}