|
|
如两个附件所示,vim在使用Tlist命令启动右边的list之后,画面就多了若干行绿色底的下横线。并且这些下横线是不可编辑的,画面的底色也乱七八糟的。
请问有哪位也遇到过这种情况,应如何解决。我不仅是在使用taglist的时候会出现这种情况,其他时候在用help的时候偶尔也会出现无缘无故多处下横线的情况。
以下是我的vim配置文件
" set ambiwidth=double
" important
set nocompatible
" moving around, searching and patterns
set incsearch
set ignorecase
set smartcase
" displaying text
set wrap
"set linebreaka
set sbr=\
set number
" syntax and highlighting
syntax on
filetype plugin on
filetype indent on
set hlsearch
"colo blue
colo darkblue
"colo default
"colo delek
"colo desert
"colo elflord
"colo evening
"colo koehler
"colo morning
"colo murphy
"colo pablo
"colo peachbuff
"colo ron
"colo shine
"colo torte
"colo zellner
" GUI
set guifont=Courier\ New\ 11
" messages and info
set showmode
set ruler
set report=2
set more
set showcmd
set vb
" editing text
set backspace=indent,eol,start
set showmatch
" tabs and indenting
set tabstop=4
set autoindent
" set cindent
set smartindent
set shiftwidth=4
" folding
set fdm=marker
" diff mode
set diff
" command line editing
set hi=100
" multi-byte characters
set encoding=utf8
set termencoding=utf8
set fileencoding=gb18030
set fileencodings=utf8,gb2312,gbk,gb18030,big5
" 26 various
"set viminfo+=!
"
map Q gq
source $VIMRUNTIME/vimrc_example.vim
let Tlist_Ctags_Cmd = "/usr/local/bin/exctags" |
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有帐号?注册
x
|