From f7841f7cbee1743431191d18a1b969b823b4d4a0 Mon Sep 17 00:00:00 2001 From: "Jeremy Pallats/starcraft.man" Date: Mon, 7 Dec 2015 11:35:13 -0500 Subject: [PATCH] Fix removed attribute. --- plug.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plug.vim b/plug.vim index 9a3b315..b2f2614 100644 --- a/plug.vim +++ b/plug.vim @@ -1222,7 +1222,7 @@ class Command(object): try: tfile = tempfile.NamedTemporaryFile(mode='w+b') preexec_fn = not G_IS_WIN and os.setsid or None - self.proc = subprocess.Popen(self.cmd, cwd=self.cmd_dir, stdout=tfile, + self.proc = subprocess.Popen(self.cmd, stdout=tfile, stderr=subprocess.STDOUT, stdin=subprocess.PIPE, shell=True, preexec_fn=preexec_fn)