mirror of
https://github.com/nushell/nushell.git
synced 2025-08-14 01:58:37 +02:00
Allow wildcard globs to be used in a bare word
This commit is contained in:
@ -532,6 +532,7 @@ fn is_start_bare_char(c: char) -> bool {
|
||||
'_' => true,
|
||||
'-' => true,
|
||||
'@' => true,
|
||||
'*' => true,
|
||||
_ => false,
|
||||
}
|
||||
}
|
||||
@ -546,6 +547,7 @@ fn is_bare_char(c: char) -> bool {
|
||||
'_' => true,
|
||||
'-' => true,
|
||||
'@' => true,
|
||||
'*' => true,
|
||||
_ => false,
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user