src/Lsp.vala
authorAlan Knowles <alan@roojs.com>
Sun, 17 Mar 2024 04:05:22 +0000 (12:05 +0800)
committerAlan Knowles <alan@roojs.com>
Sun, 17 Mar 2024 04:05:22 +0000 (12:05 +0800)
src/Lsp.vala

index 0f69909..a687714 100644 (file)
@@ -430,14 +430,7 @@ namespace Lsp {
                                return this.kind.icon(); 
                        }
                }
-               public string[] symbol_classes { 
-                       
-                       owned get {
-                               string[] ret = { };
-                               ret += this.kind.icon(); 
-                               return ret;
-                       }
-               }
+                
                public string tooltip {
                        owned get {
                                GLib.debug("%s : %s", this.name, this.detail);
@@ -446,6 +439,11 @@ namespace Lsp {
                                
                        }
                }
+               public stirng sort_key {
+                       owned get { 
+                               return this.kind.sort_key().to_string() + '-' + this.name;
+                       }
+               }
           
           
     }