[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 |
Beta Was this translation helpful? Give feedback.
-
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. |
Beta Was this translation helpful? Give feedback.
-
Resolved by disabling |
Beta Was this translation helpful? Give feedback.
-
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.
Beta Was this translation helpful? Give feedback.
All reactions