API endpoint for TryPasteBackFromFileSolved

Hi @misticos - I created a new endpoint for `TryPasteBackFromFile`, I'd like to submit it for your plugin.

It's the four lines below, added in the API region:

        private object TryPasteBackFromFile(string filename, string[] args)
        {
            return TryPasteBack(filename, null, args);
        }
Didn't realise but you can just use:

CallHook("TryPasteBack", filename, null, args);​


So no need for a new API :)

Thanks for pointing me in the right direction misticos 

Locked automatically