chore(docs): update nvim, tmux, wezterm keymaps

This commit is contained in:
2025-01-02 17:46:07 +02:00
parent f910dfb9ac
commit d172b86cb8
5 changed files with 146 additions and 99 deletions

View File

@@ -23,7 +23,8 @@ generate_tmux_keybindings()
{
local tmux_keybindings_docs="$1"
local cb="\n\`\`\`\n"
local cb="\n\`\`\`txt\n"
local cbe="\n\`\`\`\n"
local kb
kb=$(tmux lsk -Tprefix -N | sed -e 's/^/ /;')
local h="# tmux keybindings\n"
@@ -33,7 +34,7 @@ generate_tmux_keybindings()
kb="${kb//$HOME/\$HOME}"
msg "Outputting tmux keybindings to $tmux_keybindings_docs"
echo -e "${h}${l}${cb}${kb}${cb}" > "$tmux_keybindings_docs"
echo -e "${h}${l}${cb}${kb}${cbe}" > "$tmux_keybindings_docs"
msg "Done!"
}