diff options
| author | Daniel Gavin <danielgavin5@hotmail.com> | 2022-03-04 20:04:43 +0100 |
|---|---|---|
| committer | Daniel Gavin <danielgavin5@hotmail.com> | 2022-03-04 20:04:43 +0100 |
| commit | c1fc712b7d6f53e41411ef8587db47f451a4bbb3 (patch) | |
| tree | cd69764315fdca18944df8eb8a6aa139c83f549f /src/server/documents.odin | |
| parent | 2d9f5709d74992e0cd485099a5a8cdf12178e80d (diff) | |
give more memory to allocator
Diffstat (limited to 'src/server/documents.odin')
| -rw-r--r-- | src/server/documents.odin | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/server/documents.odin b/src/server/documents.odin index 3bb4a01..9c70035 100644 --- a/src/server/documents.odin +++ b/src/server/documents.odin @@ -48,7 +48,7 @@ document_get_allocator :: proc() -> ^common.Scratch_Allocator { return pop(&document_storage.free_allocators) } else { allocator := new(common.Scratch_Allocator) - common.scratch_allocator_init(allocator, mem.megabytes(1)) + common.scratch_allocator_init(allocator, mem.megabytes(3)) return allocator } } @@ -299,12 +299,6 @@ document_refresh :: proc(document: ^common.Document, config: ^common.Config, wri } } - //We only resolve the entire file, if we are dealing with the heavy features that require the entire file resolved. - //This gives the user a choice to use "fast mode" with only completion and gotos. - if config.enable_semantic_tokens || config.enable_inlay_hints { - resolve_entire_file(document) - } - return .None } |