document events are per fish process

Fixes #2954
This commit is contained in:
Kurtis Rader 2017-03-22 20:53:39 -07:00
parent ae0321778f
commit 542962bc69
3 changed files with 14 additions and 0 deletions

View file

@ -39,3 +39,8 @@ emit foo
block -e
# 'foo fired' will now be printed
\endfish
\subsection notes Notes
Note that events are only received from the current fish process as there is no way to send events from one fish process to another.

View file

@ -20,4 +20,9 @@ function event_test --on-event test_event
end
emit test_event something
\subsection notes Notes
Note that events are only sent to the current fish process as there is no way to send events from one fish process to another.
\endfish

View file

@ -91,3 +91,7 @@ end
This will beep when the most recent job completes.
\subsection notes Notes
Note that events are only received from the current fish process as there is no way to send events from one fish process to another.