You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(mr): avoid ${var/pat/$'...'} for compat42 in bash >= 4.3
In bash >= 4.3 with `shopt -s compat42` enabled, ${var/pat/$'...'}
would produce extra single quotations around the replacements. The mr
completion uses $'\n' to insert delimiter, but the delimiter does not
need to be the newline in this context. In this patch, we can instead
insert a space.
0 commit comments