diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-09-13 22:12:52 -0400 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-09-13 22:12:52 -0400 |
| commit | 0c71283641cab3a9940deb2b6f223c1d75227e2f (patch) | |
| tree | 533a565004d8af7bdf16fcae5830df312f213753 /src/server/position_context.odin | |
| parent | a581608407b82b4816b7fbbe29da97c55c53c33e (diff) | |
Correct selector completions within selector call exprs
Diffstat (limited to 'src/server/position_context.odin')
| -rw-r--r-- | src/server/position_context.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/position_context.odin b/src/server/position_context.odin index 0417df8..46efce2 100644 --- a/src/server/position_context.odin +++ b/src/server/position_context.odin @@ -138,7 +138,7 @@ get_document_position_context :: proc( position_context.parent_binary = nil } - if hint == .Completion && position_context.selector == nil && position_context.field == nil { + if hint == .Completion { fallback_position_context_completion(document, position, &position_context) } |