On LOAD » History » Revision 5
Revision 4 (Per Amundsen, 11/14/2015 02:46 AM) → Revision 5/8 (Per Amundsen, 11/14/2015 06:29 AM)
_Added in 1.8.10_ *on <level>:LOAD:<commands>* Triggers the first time a script file is loaded. See also [[/load]], [[/unload]], [[on START]], START]] [[on UNLOAD]]. *Parameters* <level> - The level for the event to trigger. <commands> - The commands to be performed when the event listener's criteria is met. *Example* <pre> ; Create a init alias. alias -l initscript { ; Set the %loaded variable to 'on' set %loaded on } ; Listen for the LOAD event, and when matched, run this initscript alias. on *:LOAD:initscript | echo -ag Script is $iif(%loaded,loaded,not loaded) </pre>