LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1019|回复: 10

为什么'*'处都为一黑块???

[复制链接]
发表于 2003-8-10 22:47:11 | 显示全部楼层 |阅读模式
如图所示!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?注册

x
发表于 2003-8-11 08:05:29 | 显示全部楼层
这是编辑器的问题,应该到软件版去问。
发表于 2003-8-11 10:31:09 | 显示全部楼层
这个是搜索的高亮显示吧。
你搜索一下别的词试试。
 楼主| 发表于 2003-8-11 14:32:09 | 显示全部楼层
不是啊.我没用搜索啊.
就是编辑的时候都这样.
是不是我的.vimrc里搞的鬼?
用的是VIM6.2吗.不会是软件的问题了.
哪里设置不对?
发表于 2003-8-11 17:28:14 | 显示全部楼层
那就把
set hlsearch
那行去掉。
 楼主| 发表于 2003-8-11 18:19:45 | 显示全部楼层
这是我的.vimrc文件内容.大家看看,没有你说的那个呀!
还有在VIM中写C++程序时复制时总会出现问题!(不是命令)为什么呢?
if v:lang =~ "^ko"
   set fileencodings=euc-kr
   set guifontset=-*-*-medium-r-normal--16-*-*-*-*-*-*-*
elseif v:lang =~ "^ja_JP"
   set fileencodings=euc-jp
   set guifontset=-misc-fixed-medium-r-normal--14-*-*-*-*-*-*-*
elseif v:lang =~ "^zh_TW"
   set fileencodings=big5
   set guifontset=-sony-fixed-medium-r-normal--16-150-75-75-c-80-iso8859-1,-taipei-fixed-medium-elseif v:lang =~ "^zh_CN"
   set fileencodings=gb2312
   set guifontset=*-r-*
endif
if v:lang =~ "utf8$" || v:lang =~ "UTF-8$"
   set fileencodings=utf-8,latin1
endif
                                                                                                
set nocompatible        " Use Vim defaults (much better!)
set bs=2                " allow backspacing over everything in insert mode
"set ai                 " always set autoindenting on
"set backup             " keep a backup file
set viminfo='20,\"50    " read/write a .viminfo file, don't store more
                        " than 50 lines of registers
set history=50          " keep 50 lines of command line history
set ruler               " show the cursor position all the time
set autoindent
set tabstop=8
set autoindent
set tabstop=8
set smarttab
set shiftwidth=4
                                                                                                
set showmode
set nowrap
set nowrapscan
set laststatus=2
set statusline=%<%F%h%m%r%=(%b\ 0x%B)\ \ %l,%c%V\ %P
set cindent sw=4
setlocal expandtab
                                                                                                
" Only do this part when compiled with support for autocommands
if has("autocmd")
  " In text files, always limit the width of text to 78 characters
  autocmd BufRead *.txt set tw=78
  " When editing a file, always jump to the last cursor position
  autocmd BufReadPost *
  \ if line("'\"") > 0 && line ("'\"") <= line("$") |
  \   exe "normal g'\"" |
  \ endif
endif
                                                                                                
" Don't use Ex mode, use Q for formatting
map Q gq
" Switch syntax highlighting on, when the terminal has colors
" Also switch on highlighting the last used search pattern.
if &t_Co > 2 || has("gui_running")
  syntax on
  set hlsearch
endif
                                                                                                
if &term=="xterm"
     set t_Co=8
     set t_Sb=^[4%dm
     set t_Sf=^[3%dm
endif
                                                                                                
" some extra commands for HTML editing
nmap ,mh wbgueyei<<ESC>ea></<ESC>pa><ESC>bba
nmap ,h1 _i<h1><ESC>A</h1><ESC>
nmap ,h2 _i<h2><ESC>A</h2><ESC>
nmap ,h3 _i<h3><ESC>A</h3><ESC>
nmap ,h4 _i<h4><ESC>A</h4><ESC>
nmap ,h5 _i<h5><ESC>A</h5><ESC>
nmap ,h6 _i<h6><ESC>A</h6><ESC>
nmap ,hb wbi<b><ESC>ea</b><ESC>bb
nmap ,he wbi<em><ESC>ea</em><ESC>bb
nmap ,hi wbi<i><ESC>ea</i><ESC>bb
nmap ,hu wbi<u><ESC>ea</i><ESC>bb
nmap ,hi wbi<i><ESC>ea</i><ESC>bb
nmap ,hu wbi<u><ESC>ea</i><ESC>bb
nmap ,hs wbi<strong><ESC>ea</strong><ESC>bb
nmap ,ht wbi<tt><ESC>ea</tt><ESC>bb
nmap ,hx wbF<df>f<df>
发表于 2003-8-11 18:40:45 | 显示全部楼层
还是你自己看看吧
我都看到了 :p
发表于 2003-8-11 18:41:56 | 显示全部楼层

这样更清楚一点

" Don't use Ex mode, use Q for formatting
map Q gq
" Switch syntax highlighting on, when the terminal has colors
" Also switch on highlighting the last used search pattern.
if &t_Co > 2 || has("gui_running")
syntax on
set hlsearch
endif
 楼主| 发表于 2003-8-12 00:58:27 | 显示全部楼层
改掉了还是没有用,还是一样的黑块!

出了什么问题啊?
发表于 2003-8-12 14:51:51 | 显示全部楼层
应该是没有问题。
那你
/anything <enter>
试试
您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表