mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-26 03:04:06 +00:00
29 lines
742 B
Bash
Executable File
29 lines
742 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Create file containing key mappings for Neovim
|
|
# Usage: ./create-nvim-keymaps.sh
|
|
#
|
|
# shellcheck source=shared.sh
|
|
source "${DOTFILES}/config/shared.sh"
|
|
DEST="$HOME/.dotfiles/docs/nvim-keybindings.md"
|
|
|
|
main()
|
|
{
|
|
msg "Generating Neovim keybindings documentation"
|
|
|
|
{
|
|
printf "# nvim keybindings\n\n"
|
|
printf "\`\`\`txt\n"
|
|
} > "$DEST"
|
|
|
|
NVIM_APPNAME="nvim-kickstart" nvim -c "redir! >> $DEST" -c 'silent verbose map' -c 'redir END' -c 'q'
|
|
|
|
printf "\n\`\`\`\n\n- Generated on %s\n" "$(date)" >> "$DEST"
|
|
|
|
# Remove lines with "Last set from" from the file
|
|
sed -e '/^ Last set from/d' "$DEST" > "${DEST}.tmp" && mv "${DEST}.tmp" "$DEST"
|
|
|
|
msg "Neovim keybindings documentation generated at $DEST"
|
|
}
|
|
|
|
main "$@"
|