From 093a27a5b13609ded6be80b805aceeeedcab689b Mon Sep 17 00:00:00 2001 From: Holger Rapp Date: Mon, 14 Mar 2011 20:18:58 +0100 Subject: [PATCH] Do not mess with clipboard while testing. Fix by Daniel Hahler (blueyed) --- test.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test.py b/test.py index d3b1b53..68d61fc 100755 --- a/test.py +++ b/test.py @@ -2290,6 +2290,9 @@ if __name__ == '__main__': # Ensure we are not running in VI-compatible mode. send(""":set nocompatible\n""", options.session) + # Do not mess with the X clipboard + send(""":set clipboard=""\n""", options.session) + # Ensure runtimepath includes only Vim's own runtime files # and those of the UltiSnips directory under test ('.'). send(""":set runtimepath=$VIMRUNTIME,.\n""", options.session)