aboutsummaryrefslogtreecommitdiff
path: root/src/server
diff options
context:
space:
mode:
authorDanielGavin <danielgavin5@hotmail.com>2025-06-23 12:58:37 +0200
committerDanielGavin <danielgavin5@hotmail.com>2025-06-23 12:58:37 +0200
commitbe08855c0a96ffff4f577fa5ac703853422ca153 (patch)
tree6f8824ee82d9191158e54538651af93f76df1b22 /src/server
parent83db9097154c1f64dbc290e00877667a95a9947c (diff)
Add base to auto import
Diffstat (limited to 'src/server')
-rw-r--r--src/server/completion.odin4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/completion.odin b/src/server/completion.odin
index 97c0848..62c098c 100644
--- a/src/server/completion.odin
+++ b/src/server/completion.odin
@@ -1705,8 +1705,8 @@ append_non_imported_packages :: proc(
}
for collection, pkgs in build_cache.pkg_aliases {
- //Right now only do it for core
- if collection != "core" {
+ //Right now only do it for core and builtin
+ if collection != "core" && collection != "base" {
continue
}
for pkg in pkgs {