Created
October 3, 2024 15:16
-
-
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 '$'
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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