src/Palete/LanguageClient.vala
authorAlan Knowles <alan@roojs.com>
Sun, 25 Feb 2024 09:40:06 +0000 (17:40 +0800)
committerAlan Knowles <alan@roojs.com>
Sun, 25 Feb 2024 09:40:06 +0000 (17:40 +0800)
src/Palete/LanguageClient.vala

index 67f784a..1fcb28c 100644 (file)
@@ -89,7 +89,7 @@ namespace Palete {
                public abstract async void shutdown () throws GLib.Error;
                public abstract async Lsp.CompletionList?  completion(JsRender.JsRender file, int line, int offset , int triggerType = 1) throws GLib.Error;
                public abstract async Gee.ArrayList<Lsp.DocumentSymbol> syntax (JsRender.JsRender file) throws GLib.Error;
-               
+               public abstract async Lsp.Hover hover (JsRender.JsRender file, int line, int offset) throws GLib.Error;
                
        }