https://github.com/vim/vim/pull/21018
(9 files)
—
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications, keep track of coding agent tasks and review pull requests on the go with GitHub Mobile for iOS and Android. Download it today!
You are receiving this because you are subscribed to this thread.![]()
Also, claude suggests that the base64 actually fixes a bug in the base64 encoding?
e.g. :echo base64_encode(0z010002)
Sorry, what do you mean by this? Did :echo base64_encode(0z010002) behave wrong before this PR?
—
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications, keep track of coding agent tasks and review pull requests on the go with GitHub Mobile for iOS and Android. Download it today!
You are receiving this because you are subscribed to this thread.![]()
Sorry, what do you mean by this? Did :echo base64_encode(0z010002) behave wrong before this PR?
It adds padding at the wrong position:
:echo base64_encode(0z010002)
AQ=C
:call writefile(0z010002, '/tmp/blob')
:!openssl base64 < /tmp/blob
AQAC
So I suggest to factor out the base64 related changes to a separate commit which includes a test for this.
Thanks,
—
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications, keep track of coding agent tasks and review pull requests on the go with GitHub Mobile for iOS and Android. Download it today!
You are receiving this because you are subscribed to this thread.![]()