summaryrefslogtreecommitdiffstats
path: root/pkg/cheatsheet/generator.go
blob: 1708a28e8b0348a0f19128de9f254d9f887ba6eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//go:build ignore

package main

import (
	"fmt"

	"github.com/jesseduffield/lazygit/pkg/cheatsheet"
)

func main() {
	fmt.Printf("Generating cheatsheets in %s...\n", cheatsheet.GetKeybindingsDir())
	cheatsheet.Generate()
}