I dont beleive so
If there isnt then
You would have to insert a command into every timer that simply stored the active timername something like
alias LATimer {
if ($isid) { return %LATimer }
if ($ctimer) { set %STLATimer -u1000000000 %LATimer | set -u1000000000 %LATimer $ctimer }
}
alias STLATimer { return %STLATimer }
in each timer you make u have to put the line
/LATIMER
and u can access it using $LATIMER
* I just added a $STLAtimer (second to last active) incase u need to go one back, i can see someone putting /LATIMER at the start of each timer alias, then needing to acces the timer before it!
* if the timers are commands not aliases, then you could add it like this
timer 1 1 echo blah blah blah
becomes
timer 1 1 latimer $(|,) echo blah blah blah
***
this is definitly a patchup since i would have said write a custom /TIMER command to deal with adding the command, but you cant since when u name timers u attache the name to /TIMER as /TIMERname and thus the alias doesnt get called
I guess you could do something with a timer of its own to add them, but thats pretty task intensive, also yoyu cant pull all the needed info about a timer i dont think to alter it.
be a fun exercise to try tho.
Are these your own timers u want the name off or any that go off ?