Fix panic when hitting tab at the beginning of a line with mixed tab/space indent

This commit is contained in:
Max Brunsfeld
2022-10-31 10:51:20 -07:00
parent 9156d488ca
commit 9cbb698b96
4 changed files with 72 additions and 23 deletions
+3
View File
@@ -92,6 +92,7 @@ cat <<MESSAGE
Prepared new Zed versions locally.
To push this:
git push origin \\
${preview_tag_name} \\
${stable_tag_name} \\
@@ -100,9 +101,11 @@ To push this:
main
To undo this:
git reset --hard ${old_main_sha} && git push -f . \\
:${preview_tag_name} \\
:${stable_tag_name} \\
:${minor_branch_name} \\
${old_prev_minor_sha}:${prev_minor_branch_name}
MESSAGE
+4 -3
View File
@@ -28,10 +28,11 @@ cat <<MESSAGE
Locally committed and tagged ${package} version ${new_version}
To push this:
git push origin \\
${tag_name} \\
${branch_name}
git push origin ${tag_name} ${branch_name}
To undo this:
git reset --hard ${old_sha} && git tag -d ${tag_name}
MESSAGE