mirror of
https://github.com/nushell/nushell.git
synced 2025-08-12 00:10:21 +02:00
Add at
This commit is contained in:
@ -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,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user