summaryrefslogtreecommitdiffstats
path: root/scripts/generate_cheatsheet.go
blob: 434f56bdd5c3e3b781929e3eec724257459b6cf1 (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
34
35
36
37
38
39
40
41
// run:
//   LANG=en go run generate_cheatsheet.go
// to generate Keybindings_en.md file in current directory
// change LANG to generate cheatsheet in different language (if supported)

package main

import (
	"fmt"
	"os"
	"strings"

	"github.com/jesseduffield/lazygit/pkg/app"
	"github.com/jesseduffield/lazygit/pkg/config"
)

func main() {
	appConfig, _ := config.NewAppConfig("", "", "", "", "", new(bool))
	a, _ := app.NewApp(appConfig)
	lang := a.Tr.GetLanguage()
	name := "Keybindings_" + lang + ".md"
	bindings := a.Gui.GetKeybindings()
	file, _ := os.Create(name)
	current := ""
	content := ""

	file.WriteString("# Lazygit " + a.Tr.SLocalize("help"))

	for _, binding := range bindings {
		if key := a.Gui.GetKey(binding); key != "" && binding.Description != "" {
			if binding.ViewName != current {
				current = binding.ViewName
				title := a.Tr.SLocalize(strings.Title(current) + "Title")
				content = fmt.Sprintf("</pre>\n\n## %s\n<pre>\n", title)
				file.WriteString(content)
			}
			content = fmt.Sprintf("\t<kbd>%s</kbd>:\t%s\n", key, binding.Description)
			file.WriteString(content)
		}
	}
}