From 5e89fba68116077369252539fc199108cabd0a8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96mer=20Sinan=20A=C4=9Facan?= Date: Mon, 28 Oct 2024 16:20:04 +0100 Subject: [PATCH] dart: Add support for documentation comments (#19592) Closes #19590 Release Notes: - N/A --- I'm unable to test this because rebuilding Zed with the changes does not seem to use the changes. If maintainers could let me know how to test these changes I'd like to verify that this really fixes #19590. --------- Co-authored-by: Marshall Bowers --- extensions/dart/languages/dart/config.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/dart/languages/dart/config.toml b/extensions/dart/languages/dart/config.toml index d723d4d6d3..15420c74f0 100644 --- a/extensions/dart/languages/dart/config.toml +++ b/extensions/dart/languages/dart/config.toml @@ -1,7 +1,7 @@ name = "Dart" grammar = "dart" path_suffixes = ["dart"] -line_comments = ["// "] +line_comments = ["// ", "/// "] autoclose_before = ";:.,=}])>" brackets = [ { start = "{", end = "}", close = true, newline = true },