[iOS/IPadOS] Why does text containing ":" get url-encoded when pasted into editor? #7057
Replies: 3 comments 4 replies
|
Interesting, any idea if it happens to you in Codespaces? I ask because it seems most likely an upstream issue with VS Code itself, if I had to guess. I tried to reproduce in code-server 4.93.1 in a brand new file called |
2 replies
|
Apparently this is the way Apple has decided to treat strings containing a colon - https://stackoverflow.com/questions/77662557/how-do-you-avoid-copy-paste-content-with-a-coming-out-url-encoded-on-an-ipho It's strange that i haven't been able to find any other conversations/issues about this here. |
2 replies
|
Resolved by disabling |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
When pasting text where the first line contains
:into an editor window, all text following the colon is url-encoded.Example text without colon on first line:
Normal result when pasted into editor:
Example text with colon on first line:
Encoded result when pasted into editor:
This encoding does not happen when pasting text into the code-server terminal, it only happens when pasting into code-server editor windows.
I have no extensions installed, and all settings are default.
All reactions