From 942b6178654d6dc44f47d6b2659f01709b5180e8 Mon Sep 17 00:00:00 2001 From: Alexandros Naskos Date: Thu, 14 May 2020 15:09:27 +0300 Subject: [PATCH] Updated README, config.zig doc comment --- README.md | 1 + src/config.zig | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3913b01..783fb26 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,7 @@ The following options are currently available. | Option | Type | Default value | What it Does | | --- | --- | --- | --- | | `enable_snippets` | `bool` | `true` | Enables snippet completion, set to false for compatibility with language clients that do not support snippets (such as ale). | +| `zig_lib_path` | `?[]const u8` | `null` | zig library path, used to analyze std library imports. | ## Usage diff --git a/src/config.zig b/src/config.zig index 5913b6f..1b70383 100644 --- a/src/config.zig +++ b/src/config.zig @@ -3,5 +3,5 @@ /// Whether to enable snippet completions enable_snippets: bool = true, -/// zig installation path +/// zig library path zig_lib_path: ?[]const u8 = null,