Added rebuild plugins for YCM
This commit is contained in:
parent
35211b0a74
commit
d61b3c8ec0
@ -60,3 +60,11 @@ Teagan
|
|||||||
Carnifex
|
Carnifex
|
||||||
Rax
|
Rax
|
||||||
Teeples
|
Teeples
|
||||||
|
NPC
|
||||||
|
NFA
|
||||||
|
DFA
|
||||||
|
FSM
|
||||||
|
CNF
|
||||||
|
CNFSAT
|
||||||
|
WLORP
|
||||||
|
WLOG
|
||||||
|
@ -5,9 +5,18 @@ function updateCommandT() {
|
|||||||
[ ! -d $COMMAND_T_DIR ] && echo "Unable to locate command t build files" && exit 1;
|
[ ! -d $COMMAND_T_DIR ] && echo "Unable to locate command t build files" && exit 1;
|
||||||
|
|
||||||
cd $COMMAND_T_DIR;
|
cd $COMMAND_T_DIR;
|
||||||
pwd;
|
|
||||||
ruby extconf.rb;
|
ruby extconf.rb;
|
||||||
make;
|
make;
|
||||||
}
|
}
|
||||||
|
|
||||||
updateCommandT;
|
function buildYCM() {
|
||||||
|
python3 --version || "python3-dev required to build YouCompleteMe" && exit 1;
|
||||||
|
local YCM_DIR="$HOME/.vim/bundle/YouCompleteMe";
|
||||||
|
[ ! -d $YCM_DIR ] && echo "Unable to locate YouCompleteMe build files" && exit 1;
|
||||||
|
|
||||||
|
cd $YCM_DIR;
|
||||||
|
python3 install.py;
|
||||||
|
}
|
||||||
|
|
||||||
|
#updateCommandT;
|
||||||
|
buildYCM;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user