mirror of
https://github.com/nushell/nushell.git
synced 2025-08-10 23:05:47 +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,
|
||||
_ => false,
|
||||
}
|
||||
}
|
||||
@ -531,6 +532,7 @@ fn is_bare_char(c: char) -> bool {
|
||||
'/' => true,
|
||||
'_' => true,
|
||||
'-' => true,
|
||||
'@' => true,
|
||||
_ => false,
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user