From 3458772221a266e04e27423a504d9c620b019634 Mon Sep 17 00:00:00 2001 From: Peter Dahlberg Date: Wed, 1 Nov 2017 12:52:56 +0100 Subject: [PATCH] Fix call --- install_files.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_files.py b/install_files.py index 454ac71..f9f4e7b 100755 --- a/install_files.py +++ b/install_files.py @@ -57,7 +57,7 @@ def install_vim(pdotfiles, force=False): ["git", "clone", "https://github.com/VundleVim/Vundle.vim.git", pvundle.as_posix()]) print("Install vim plugins") - check_call("vim -X -- +PluginInstall +qall") + check_call("vim -X -- +PluginInstall +qall".split()) def install_tmux(pdotfiles, force=False):