From: Charles McGarvey Date: Thu, 23 Jun 2011 18:26:36 +0000 (-0600) Subject: the stall time is too probably too short X-Git-Tag: v0.3.2~10 X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fvimcoder;a=commitdiff_plain;h=e7da6f1db971186ff1fa582d9dcf3c0e9ce46dad the stall time is too probably too short --- 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();