mirror of
https://github.com/danbulant/nushell
synced 2026-05-24 12:35:59 +00:00
Allow % in bare words
This commit is contained in:
parent
90f190e54a
commit
f9d54c2f25
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