move scope variable into nu variable (#4725)

This commit is contained in:
JT
2022-03-04 11:36:11 -05:00
committed by GitHub
parent eef3de2d05
commit e64ca97fe2
8 changed files with 349 additions and 355 deletions

View File

@ -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) {