We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2477fd commit 3fad98eCopy full SHA for 3fad98e
src/testdir/test_channel.py
@@ -126,6 +126,9 @@ def handle(self):
126
print("sending: {0}".format(cmd))
127
self.request.sendall(cmd.encode('utf-8'))
128
response = "ok"
129
+ # Need to wait for Vim to give up, otherwise it
130
+ # sometimes fails on OS X.
131
+ time.sleep(0.2)
132
elif decoded[1] == 'malformed2':
133
cmd = '"unterminated string'
134
src/version.c
@@ -764,6 +764,8 @@ static char *(features[]) =
764
765
static int included_patches[] =
766
{ /* Add new patch number below this line */
767
+/**/
768
+ 122,
769
/**/
770
121,
771
0 commit comments