mirror of
https://github.com/nushell/nushell
synced 2024-12-27 05:23:11 +00:00
Merge pull request #566 from jonathandturner/fix_538
Allow % in bare words
This commit is contained in:
commit
36c181706d
1 changed files with 1 additions and 0 deletions
|
@ -644,6 +644,7 @@ fn is_bare_char(c: char) -> bool {
|
|||
'=' => true,
|
||||
'~' => true,
|
||||
'+' => true,
|
||||
'%' => true,
|
||||
_ => false,
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue