fix line numbering issues with vala generator - hopefully fixes completion in node...
[roobuilder] / src / Palete / LanguageClientVala.vala
index 4860da2..5a9327f 100644 (file)
@@ -8,16 +8,10 @@ namespace Palete {
                        // extend versions will proably call initialize to start and connect to server.
                        base(project);
                        
-                       this.startServer();
-                       
-               
-               }
-               public override void startServer()
-               {
                        this.initProcess("/usr/bin/vala-language-server");
+                       
                
                }
-               
                 public override   void  initialize_server()   {
                        try {
                                Variant? return_value;
@@ -33,10 +27,8 @@ namespace Palete {
                                );
                                GLib.debug ("LS replied with %s", Json.to_string (Json.gvariant_serialize (return_value), true));
                                this.initialized = true;
-                               return;
                        } catch (GLib.Error e) {
                                GLib.debug ("LS replied with error %s", e.message);
-                               this.onClose();
                        }
                        
                }