diff options
| author | Daniel Gavin <danielgavin5@hotmail.com> | 2021-10-02 20:48:46 +0200 |
|---|---|---|
| committer | Daniel Gavin <danielgavin5@hotmail.com> | 2021-10-02 20:48:46 +0200 |
| commit | 893540ee2e9573720ab379deaa4d595926abefe3 (patch) | |
| tree | 4e6d5e084e080170d310702d1d3d4766a6cf3083 /src/server | |
| parent | 5c8000afbce31748e8a8e13c7116eb7385087405 (diff) | |
Uncomment code after issue 1129 was fixed.
Diffstat (limited to 'src/server')
| -rw-r--r-- | src/server/completion.odin | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/server/completion.odin b/src/server/completion.odin index d81998a..cca5fe3 100644 --- a/src/server/completion.odin +++ b/src/server/completion.odin @@ -46,15 +46,9 @@ get_completion_list :: proc(document: ^common.Document, position: common.Positio return list, true; } - /* - NOTE - Currently bug in contains_any, uncomment when https://github.com/odin-lang/Odin/issues/1129 is closed. - */ - /* if position_context.import_stmt == nil && strings.contains_any(completion_context.triggerCharacter, "/:\"") { return list, true; } - */ ast_context := make_ast_context(document.ast, document.imports, document.package_name, document.uri.uri); |