mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 18:57:44 +02:00
move scope variable into nu variable (#4725)
This commit is contained in:
@ -86,7 +86,7 @@ impl NuCompleter {
|
||||
) -> Vec<(reedline::Span, String)> {
|
||||
let mut output = vec![];
|
||||
|
||||
let builtins = ["$nu", "$scope", "$in", "$config", "$env", "$nothing"];
|
||||
let builtins = ["$nu", "$in", "$config", "$env", "$nothing"];
|
||||
|
||||
for builtin in builtins {
|
||||
if builtin.as_bytes().starts_with(prefix) {
|
||||
|
Reference in New Issue
Block a user