Skip to content

Instantly share code, notes, and snippets.

@mattmc3
Created October 3, 2024 15:16
Show Gist options
  • Save mattmc3/132bcc2bb67cf49e737f78bdd9e49023 to your computer and use it in GitHub Desktop.
Save mattmc3/132bcc2bb67cf49e737f78bdd9e49023 to your computer and use it in GitHub Desktop.
Bash + ble.sh - fix markdown copy/paste commands by stripping leading dollar sign '$'
# Strip leading dollar signs. Fixes commands pasted from markdown.
# Requires ble.sh: https://github.com/akinomyoga/ble.sh
# shellcheck disable=SC2016
ble/function#advice around ble/widget/default/accept-line '
if [[ "${_ble_edit_str:0:2}" == "$ " ]]; then
ble/widget/beginning-of-logical-line
ble/widget/insert-string "${_ble_edit_str:2}"
ble/widget/kill-forward-logical-line
fi
ble/function#advice/do
'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment