mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 23:24:39 +00:00
26 lines
442 B
Text
26 lines
442 B
Text
|
# Test events.
|
||
|
|
||
|
# This pattern caused a crash; github issue #449
|
||
|
|
||
|
set -g var before
|
||
|
|
||
|
function test1 --on-event test
|
||
|
set -g var $var:test1
|
||
|
functions -e test2
|
||
|
end
|
||
|
|
||
|
function test2 --on-event test
|
||
|
# this should not run, as test2 gets removed before it has a chance of running
|
||
|
set -g var $var:test2a
|
||
|
end
|
||
|
emit test
|
||
|
|
||
|
echo $var
|
||
|
|
||
|
|
||
|
function test3 --on-event test3
|
||
|
echo received event test3 with args: $argv
|
||
|
end
|
||
|
|
||
|
emit test3 foo bar
|