From 54a2a8e940018f8984e51e21fe94abf1ff0055fe Mon Sep 17 00:00:00 2001 From: Brad Lewis <22850972+BradLewis@users.noreply.github.com> Date: Sun, 14 Dec 2025 05:28:06 -0500 Subject: Add documentation for directives --- tests/hover_test.odin | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'tests') diff --git a/tests/hover_test.odin b/tests/hover_test.odin index 81a26ce..6f8cecf 100644 --- a/tests/hover_test.odin +++ b/tests/hover_test.odin @@ -5950,6 +5950,16 @@ ast_hover_directives_load :: proc(t: ^testing.T) { } test.expect_hover(t, &source, "test.bar :: #load(\"foo.txt\")") } + +@(test) +ast_hover_directives_config_info :: proc(t: ^testing.T) { + source := test.Source { + main = `package test + bar :: #c{*}onfig(TEST, false) + `, + } + test.expect_hover(t, &source, "#config(, default)\n\nChecks if an identifier is defined through the command line, or gives a default value instead.\n\nValues can be set with the `-define:NAME=VALUE` command line flag.") +} /* Waiting for odin fix -- cgit v1.2.3