mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 10:36:00 +02:00
Merge pull request #566 from jonathandturner/fix_538
Allow % in bare words
This commit is contained in:
@ -644,6 +644,7 @@ fn is_bare_char(c: char) -> bool {
|
||||
'=' => true,
|
||||
'~' => true,
|
||||
'+' => true,
|
||||
'%' => true,
|
||||
_ => false,
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user