Paste after the selected words

hi Nick,

Is it possible to paste words (form the clipboard) after selected words?
thank you!

Another year almost come and glad we all safe.

1 Like

Indeed, we are still here. Something like this will do it:

#popclip
name: Paste After
icon: iconify:material-symbols:content-paste-go-rounded
javascript: popclip.pasteText(popclip.input.text + pasteboard.text)
1 Like

Morning?
Thank you!

If I wanna add a space in between, how should I change it?

You never specified a space :slight_smile:

change this: popclip.input.text + pasteboard.text

to this: popclip.input.text + ' ' + pasteboard.text

1 Like

Thank you! I use this to change my files name.
tried ‘’ without a space and failed :joy:

1 Like