我在Ubuntu 12.10上安装了带有UCS2版本的Python2.7.我只想用UCS4重新编译python或启用UCS4.我该怎么做?
我使用vundle安装了YouCompleteMe.然后安装所有插件并使用安装YCM
./install.sh --clang-completer
Run Code Online (Sandbox Code Playgroud)
这就是我的vimrc的样子:
syntax on
set expandtab
set cindent
set tabstop=4
retab
set shiftwidth=4
set hlsearch
set paste
set ic
set number
colorscheme molokai
set t_Co=256
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
Plugin 'tpope/vim-fugitive'
Plugin 'tpope/vim-repeat'
Plugin 'kien/ctrlp.vim'
Plugin 'sjl/gundo.vim'
Plugin 'Valloric/YouCompleteMe'
Plugin 'scrooloose/syntastic'
Plugin 'Valloric/ListToggle'
call vundle#end() " required
filetype plugin indent on
"options for syntastic"
set statusline+=%#warningmsg# …Run Code Online (Sandbox Code Playgroud)