Hi,
I am new using VIM ... to be precise I use GVIM.
My platform: Ubuntu 6.10, VIM 7
I made my own .gvimrc file (see below) and Incsearch is not working. What am
I doing wrong?
It should work when using :/pattern, shouldn't it?
I checked :set all and incsearch is on.
Is something related to the colorscheme and highlighting?
I used to edit perl files, is my coloscheme overwriting the perl color
syntaxes?

thank you very much for your patient

set ch=2                " Make command line two lines high
set mousehide           " Hide the mouse when typing text
set nocompatible 

  " Switch on syntax highlighting if it wasn't on yet.
  if !exists("syntax_on")
    syntax on
  endif

colorscheme flope "my color scheme

" Highly recommended to set tab keys to 4 spaces
set tabstop=4
set shiftwidth=4
"
" The opposite is 'set nowrapscan' while searching for strings....
set wrapscan
"
" The opposite is set ignorecase
set noignorecase
 
" You may want to turn off the beep sounds (if you want quite) with visual
bell
set vb

set lines=50
set columns=140
set nowrap
" the `b' puts a scrollbar at the bottom, which has no effect if wrap is set
" Menu bar (m), Right scroll bar (r), 
set guioptions +=b

" Switch on search pattern highlighting.
set hlsearch

"it will show the pattern while your are still typing
set incsearch



-- 
View this message in context: 
http://www.nabble.com/IncSearch-doesn%27t-work-%28newbie%29-tf3449967.html#a9622845
Sent from the Vim - General mailing list archive at Nabble.com.

Reply via email to