Added plugin rebuilder bash script for vim plugins

This commit is contained in:
Wryn Wagner 2019-10-02 09:52:29 -06:00
parent 8d58edcd83
commit 04f15724e2

13
vim/rebuild_plugins Executable file
View File

@ -0,0 +1,13 @@
#!/bin/bash
function updateCommandT() {
local COMMAND_T_DIR="$HOME/.vim/bundle/command-t/ruby/command-t/ext/command-t";
[ ! -d $COMMAND_T_DIR ] && echo "Unable to locate command t build files" && exit 1;
cd $COMMAND_T_DIR;
pwd;
ruby extconf.rb;
make;
}
updateCommandT;