mirror of
https://github.com/nushell/nushell
synced 2024-12-28 14:03:09 +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,
|
||||||
'+' => true,
|
'+' => true,
|
||||||
|
'%' => true,
|
||||||
_ => false,
|
_ => false,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue