I love the functionality and simplicity of listary I switched from FARR that is IMO too configurable, which I found a little burdening… I also prefer how listary seamlessly integrates into many programs.
One thing that I am still missing in listary is support for clipboard manipulation. One thing I do frequently is pasting certain chunks of text in two ways:
Thanks for responding. Let’s focus on file browsing
In meanwhile I refreshed my knowledge of AHK and realized it’s actually fairly easy to achieve any kind of clipboard manipulation. Now I created a script (which does copy, string manipulation, and paste) and put it into listary Apps search folder and it works flawlessly.
Posting here just in case anybody would find this useful.
Regards,
Joc.
Send ^c ; copy
Sleep 50
FoundPos := RegExMatch(ClipBoard, “\d{5,6}” , Match) ; search for 5-6 digits within clipboard
if !FoundPos
{
MsgBox Number not found in clipboard content.
Exit
}
ClipBoard = pre_text_%Match%_post_text ; glue number and some text