From e7da6f1db971186ff1fa582d9dcf3c0e9ce46dad Mon Sep 17 00:00:00 2001 From: Charles McGarvey Date: Thu, 23 Jun 2011 12:26:36 -0600 Subject: [PATCH] the stall time is too probably too short --- 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 ea68058..40ccc82 100644 --- a/src/com/dogcows/Editor.java +++ b/src/com/dogcows/Editor.java @@ -243,7 +243,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() + 250; + long expire = System.currentTimeMillis() + 1000; while (System.currentTimeMillis() < expire) { Thread.yield(); -- 2.43.0