Do not mess with clipboard while testing. Fix by Daniel Hahler (blueyed)

This commit is contained in:
Holger Rapp 2011-03-14 20:18:58 +01:00
parent 1f128556e0
commit 093a27a5b1

View File

@ -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)