diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-09-08 08:55:08 -0400 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-09-08 08:55:08 -0400 |
| commit | 38f27472e9baf7b856dc1ff61c50b19e9b07816c (patch) | |
| tree | be932e3756b04e6495e8426af2c771282e110984 /src/server/completion.odin | |
| parent | 9a4c5579846a41f2c42ee8e937a8f88a50eec0af (diff) | |
Mark struct and bitset fields correctly
Diffstat (limited to 'src/server/completion.odin')
| -rw-r--r-- | src/server/completion.odin | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/server/completion.odin b/src/server/completion.odin index 802445f..ced08b4 100644 --- a/src/server/completion.odin +++ b/src/server/completion.odin @@ -747,6 +747,7 @@ get_selector_completion :: proc( } if selector.type != .Variable && + selector.type != .Field && selector.type != .Package && selector.type != .Enum && selector.type != .Function { |