mirror of
https://github.com/nushell/nushell
synced 2025-01-14 14:14:13 +00:00
Add question mark parsing
This commit is contained in:
parent
6b7d9c1de0
commit
a966e88424
1 changed files with 2 additions and 0 deletions
|
@ -533,6 +533,7 @@ fn is_start_bare_char(c: char) -> bool {
|
|||
'-' => true,
|
||||
'@' => true,
|
||||
'*' => true,
|
||||
'?' => true,
|
||||
_ => false,
|
||||
}
|
||||
}
|
||||
|
@ -548,6 +549,7 @@ fn is_bare_char(c: char) -> bool {
|
|||
'-' => true,
|
||||
'@' => true,
|
||||
'*' => true,
|
||||
'?' => true,
|
||||
_ => false,
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue