go install github.com/gubarz/cheatmd/cmd/cheatmd@latest curl -fsSL cheatmd.dev/install.sh | sh 
Plain-text source, modern terminal ergonomics.
Any heading with a code block is a cheat. No schemas, no databases, just files you can read, diff, and share.
Search titles, commands, tags, and descriptions. Frequently-used cheats float to the top automatically.
Variables evaluate live in your shell and present a scrollable picker, with prompt fallback.
cheatmd --lint catches syntax errors, broken imports, and undeclared variables before they run.
Define variables and selectors once, import them anywhere. Keep cheatsheets DRY across files.
Dump cheats to JSON or CSV with cheatmd dump. Pipe into your search, indexes, or tooling.
Run it as a floating pane, tmux overlay, or shell keybinding.
Launches CheatMD in a floating terminal overlay on top of your current layouts. Pressing Enter auto-injects the resolved command directly into your active workspace.
bind "Ctrl n" {
Run "sh" "-c" "content=$(cheatmd --print); zellij action toggle-floating-panes; zellij action write-chars \\"$content\\"" {
floating true
close_on_exit true
};
}Pops CheatMD open inside a fast sidebar split pane. Selecting a command will load tmux's paste buffers and insert the output directly into the adjacent pane.
bind-key -n C-n split-window "$SHELL --login -i -c 'cheatmd --print | tr -d \"\\r\\n\" | tmux load-buffer -b tmp - ; tmux paste-buffer -t {last} -b tmp -d'"Simply evaluate the widget inside your shell startup script to unlock instant `Ctrl+G` selections.
eval "$(cheatmd widget $SHELL)"Configuration, DSL, modules, and recipes. It is all in the wiki.
Heading structure, code blocks, and DSL metadata.
Interactive prompts, shell evaluation, and literal forms.
--header, --column, and --map configurations.
Flexible branching using if / fi conditions.
Export and import variables across files.
Multi-step workflows executed sequentially.
Prompt widgets, tmux, and Zellij overlays.
Syntax validation and metadata exports.
Copy-pasteable cheatsheets to start from.