mirror of
https://github.com/danbulant/nushell
synced 2026-05-24 12:35:59 +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,
|
||||||
'-' => true,
|
'-' => true,
|
||||||
|
'@' => true,
|
||||||
_ => false,
|
_ => false,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -531,6 +532,7 @@ fn is_bare_char(c: char) -> bool {
|
||||||
'/' => true,
|
'/' => true,
|
||||||
'_' => true,
|
'_' => true,
|
||||||
'-' => true,
|
'-' => true,
|
||||||
|
'@' => true,
|
||||||
_ => false,
|
_ => false,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue