src/Lsp.vala
authorAlan Knowles <alan@roojs.com>
Sun, 17 Mar 2024 03:36:15 +0000 (11:36 +0800)
committerAlan Knowles <alan@roojs.com>
Sun, 17 Mar 2024 03:36:15 +0000 (11:36 +0800)
src/Lsp.vala

index 714a700..6de07d4 100644 (file)
@@ -440,8 +440,8 @@ namespace Lsp {
                }
                public string tooltip {
                        owned get {
-                               var detail = this.detail == "" ? (this.kind.to_string() + ": " + this.name) : this.detail;
-                                return GLib.markup_escape_text(detail + "\nline: " + this.range.start.line.to_string());
+
+                                return GLib.markup_escape_text(this.detail + "\nline: " + this.range.start.line.to_string());
                                
                        }
                }