I want to paste my Clipboard text in rename mode just like Ctrl + v
But I need to use a regex for remove 4 character from right from my clipboard text also.
spouse my clipboard text is My Clipboard demo text (1)
Now I have Select my target folder then press F2 for rename mode
Now I want to set a Hotkey (just like Ctrl + v) for paste my Clipboard text but remove 4 character from right, so my wanted text will be My Clipboard demo text
Clipboard COPYNAMES=nopaths REGEXP "(.*).\(\d+\)" "\1\2"
This command can copy selected folder name & this Regex REGEXP "(.*).\(\d+\)" "\1\2"
can remove the (1)
from the right, I need a command for paste when I am in inline rename mode.