From a56d46f6e158c1efc8d2edc17f1fa3bfa7ee7003 Mon Sep 17 00:00:00 2001 From: Charles McGarvey Date: Wed, 13 Jul 2011 14:51:11 -0600 Subject: [PATCH] wait on the server process for 2.5 seconds --- src/com/dogcows/Editor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/dogcows/Editor.java b/src/com/dogcows/Editor.java index 203d8ec..674ecb9 100644 --- a/src/com/dogcows/Editor.java +++ b/src/com/dogcows/Editor.java @@ -236,7 +236,7 @@ public class Editor * before the timeout, we will assume it is not backgrounding and * that everything worked. This works as long as the Vim server is * able to start within the stall period. */ - long expire = System.currentTimeMillis() + 1000; + long expire = System.currentTimeMillis() + 2500; while (System.currentTimeMillis() < expire) { Thread.yield(); -- 2.43.0