sublime_merge
sublime_merge copied to clipboard
Allow $text selector for custom commands as substring
Problem description
The text selector can only be used as a whole string "$text". It cannot be used as a substring.
[
{
"caption": "Create bookmark at commit",
"command": "git",
"args": {
"argv": [
"branch", "bookmarks/$text", "$select_commit"
]
}
}
]
Nevertheless, it is parsed and replaced by an empty string.
Preferred solution
Do show a prompt for the $text selector.
Alternatives
Write "bookmarks/..." every time.
Screenshots
