From: Alan Knowles Date: Sun, 17 Mar 2024 03:35:53 +0000 (+0800) Subject: src/Lsp.vala X-Git-Url: http://git.roojs.org/?a=commitdiff_plain;h=d42d3a4d286744c7a6fee827d5e76351b40a623a;p=roobuilder src/Lsp.vala --- diff --git a/src/Lsp.vala b/src/Lsp.vala index cba5c45a8..714a70096 100644 --- a/src/Lsp.vala +++ b/src/Lsp.vala @@ -441,7 +441,7 @@ namespace Lsp { public string tooltip { owned get { var detail = this.detail == "" ? (this.kind.to_string() + ": " + this.name) : this.detail; - return detail + "\nline: " + this.range.start.line.to_string(); + return GLib.markup_escape_text(detail + "\nline: " + this.range.start.line.to_string()); } }