mirror of
https://github.com/tmux/tmux.git
synced 2026-07-03 10:12:31 +00:00
11 lines
296 B
Bash
11 lines
296 B
Bash
# %if/%elif/%else.
|
|
# Expected: elif branch is selected.
|
|
%if 0
|
|
display-message "parser elif: selected if branch - wrong"
|
|
%elif 1
|
|
display-message "parser elif: selected elif branch"
|
|
%else
|
|
display-message "parser elif: selected else branch - wrong"
|
|
%endif
|
|
display-message "parser elif: after endif"
|