mirror of
https://github.com/danbulant/nushell
synced 2026-05-21 05:18:42 +00:00
Merge pull request #238 from jonathandturner/parse_glob
Allow wildcard globs to be used in a bare word
This commit is contained in:
commit
8929329102
1 changed files with 2 additions and 0 deletions
|
|
@ -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,
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue