mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-19 04:41:15 -03:00
Allow and/or statements to attach to the if/while header
For example: if false; or true; echo hello; end will output 'hello' now. Fixes #1428
This commit is contained in:
@@ -168,6 +168,8 @@ wcstring token_type_description(parse_token_type_t type)
|
||||
case symbol_case_item:
|
||||
return L"case_item";
|
||||
|
||||
case symbol_andor_job_list:
|
||||
return L"andor_job_list";
|
||||
case symbol_argument_list:
|
||||
return L"argument_list";
|
||||
case symbol_freestanding_argument_list:
|
||||
|
||||
Reference in New Issue
Block a user