mirror of
https://github.com/nushell/nushell
synced 2024-12-27 05:23:11 +00:00
Add at
This commit is contained in:
parent
4643c9b3a9
commit
8bf7ea1c6c
1 changed files with 2 additions and 0 deletions
|
@ -518,6 +518,7 @@ fn is_start_bare_char(c: char) -> bool {
|
|||
'/' => true,
|
||||
'_' => true,
|
||||
'-' => true,
|
||||
'@' => true,
|
||||
_ => false,
|
||||
}
|
||||
}
|
||||
|
@ -531,6 +532,7 @@ fn is_bare_char(c: char) -> bool {
|
|||
'/' => true,
|
||||
'_' => true,
|
||||
'-' => true,
|
||||
'@' => true,
|
||||
_ => false,
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue