Status: New
Owner: ----
Labels: Type-Defect Priority-Medium

New issue 299 by [email protected]: ibus 开启的情况下不能在vim里面输入空格?
http://code.google.com/p/ibus/issues/detail?id=299

rt
  ibus版本是iBus 0.1.1.20090203,ibus-pinyin 是0.1.1.20081004
ps:最新版的ibus(1.1.x)解决了在qt4程序下光标跟随的问题么?

只有在将ibus关闭的情况下才能,ibus开启下即使是英文状态也不能够,不知是bug还
是我的设置有问题。我的vimrc如下:

set nocompatible

if !exists("syntax_on")
    syntax on
endif

set number
set cmdheight=4
set ruler

"光标在行两端时跳到上下行
set whichwrap=b,s,<,>,[,]

"汉字断行,复行不补空格
set fo+=mB

"取消顶部的菜单栏
set guioptions-=m

"Shift+左右选择文本
set keymodel=startsel,stopsel

"在命令模式下Tab补全时,以单行菜单形式显示。
set wildmenu

"设置tab
set tabstop=4
set shiftwidth=4
set softtabstop=4

"自动缩进
set smartindent

"更方便的退格键
set backspace=2

"自动检测文件类型
filetype on

nnoremap <silent> <F9> :NERDTree<CR>

"配置taglist插件
nnoremap <silent> <F8> :Tlist<CR>
"let Tlist_Use_SingleClick=1
let Tlist_Show_One_File=1
let Tlist_Exit_OnlyWindow=1

"minibuf 插件
"
let g:miniBufExplMapWindowNavVim = 1 "Ctrl-<hjkl> to move to window
let g:miniBufExplTabWrap = 1 " make tabs show complete (no broken on two  
lines)

"配色文件
colorscheme elflord

"对python文件进行特殊设置
if has("autocmd")
    filetyp plugin indent on
    autocmd FileType python setlocal et | setlocal sta | setlocal sw=4
    autocmd FileType python compiler pyunit
    autocmd FileType python setlocal makeprg=python\ %
endif
"字体
if (has("gui_running"))
     set guifont=Bitstream\ Vera\ Sans\ Mono\ 10
endif
"以下针对文本文件
"让文本文件也有高亮,thanks to xb...@smth
augroup filetypedetect
au BufNewFile,BufRead *.* setf ztxt
augroup END

"缓冲区写入文件的时候自动检查文件类型
au BufWritePost * filet detect

"设定文件编码类型,彻底解决中文编码问题
let &termencoding=&encoding
set fileencodings=utf-8,gbk,ucs-bom,cp936

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "ibus-devel" group.
iBus project web page: http://code.google.com/p/ibus/
iBus dev group: http://groups.google.com/group/ibus-devel?hl=en
-~----------~----~----~----~------~----~------~--~---

回复