diff options
| author | Daniel Gavin <danielgavin5@hotmail.com> | 2022-06-21 23:22:40 +0200 |
|---|---|---|
| committer | Daniel Gavin <danielgavin5@hotmail.com> | 2022-06-21 23:22:40 +0200 |
| commit | 6070844d69cab5b4a5bb50473bd6ccc2343ff7dd (patch) | |
| tree | 9c963ed0e0f28af3200b1a491ce279a30baa259c /src/server | |
| parent | 23feadba81e951e523dd37d14e068635408bc90b (diff) | |
Add new json variable for picking the space amount
Diffstat (limited to 'src/server')
| -rw-r--r-- | src/server/format.odin | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/server/format.odin b/src/server/format.odin index 4c51943..3cf8de6 100644 --- a/src/server/format.odin +++ b/src/server/format.odin @@ -21,6 +21,7 @@ get_complete_format :: proc(document: ^common.Document, config: ^common.Config) style := printer.default_style style.max_characters = config.formatter.characters style.tabs = config.formatter.tabs + style.spaces = config.formatter.spaces prnt := printer.make_printer(style, context.temp_allocator) |