hyperterm-paste
hyperterm-paste copied to clipboard
Powershell pasting almost there
Adding the option to specify your separator was great. Now I'm getting an issue where things are pasted twice. I think that the underlying Powershell session is still hearing ctrl + v.

Again, if time permits, I'll try to take a look. But work has me slammed.
I have to correct this. It happened on my Ubuntu machine as well.
This is happening too on cmd.exe
Apparently, the first paste is sanitized, and the second is not. If you paste $ 7231 it actually pastes 7231$ 7231
Hey, this is a persisting bug that I couldn't nail down. Maybe someone with experience in writing hyperterm plugins can take a look. I don't use hyperterm anymore.
I have no experience with hyperterm plugins, but debugging I could find that this line is not preventing the default term's paste.
Because of that, the text is duplicated because terminal.io.sendString(sanitizedClipboard) is run (pasting the correct text), but soon after, the default ctrl + v command is run, pasting the text again.
Any idea how to fix this?
I saw that hyperterm-safepaste can modify the paste's content and it doesn't duplicate the output