2007-08-19 16:42:30 +00:00
\section emit emit - Emit a generic event
2014-08-01 02:37:32 +00:00
\subsection emit-synopsis Synopsis
2014-08-01 12:25:41 +00:00
\fish{synopsis}
2014-08-01 02:37:32 +00:00
emit EVENT_NAME [ARGUMENTS...]
\endfish
2007-08-19 16:42:30 +00:00
\subsection emit-description Description
2014-08-01 02:37:32 +00:00
`emit` emits, or fires, an event. Events are delivered to, or caught by, special functions called event handlers. The arguments are passed to the event handlers as function arguments.
2007-08-19 16:42:30 +00:00
2014-08-19 12:41:23 +00:00
2007-08-19 16:42:30 +00:00
\subsection emit-example Example
2014-08-19 12:41:23 +00:00
The following code first defines an event handler for the generic event named 'test_event', and then emits an event of that type.
2007-08-19 16:42:30 +00:00
2014-08-01 02:37:32 +00:00
\fish
function event_test --on-event test_event
2012-12-20 00:11:55 +00:00
echo event test: $argv
2007-08-19 16:42:30 +00:00
end
2012-12-20 00:11:55 +00:00
emit test_event something
2014-08-01 02:37:32 +00:00
\endfish