小编com*_*rad的帖子

如何将python从UCS2更改为UCS4

我在Ubuntu 12.10上安装了带有UCS2版本的Python2.7.我只想用UCS4重新编译python或启用UCS4.我该怎么做?

python unicode compilation ucs

11
推荐指数
1
解决办法
1万
查看次数

YouCompleteme有效,但无法使用TAB完成

我使用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)

vim autocomplete

8
推荐指数
2
解决办法
4013
查看次数

标签 统计

autocomplete ×1

compilation ×1

python ×1

ucs ×1

unicode ×1

vim ×1