is there a way to either define variables for procs called from binds (...like bind pub P !halt proc_one && set cmd "command") or is there a way to check the current bind (e.g. !halt) the procedure is called from?
for example:
bind pub P !halt proc_two
proc proc_two {some args} {
global current_bind #should get !halt in this example
....
}