Hi Bram,
I just compiled a "minimal Vim" as an experiment. Here are my configure
settings (most of them are probably redundant):
> export CONF_OPT_X='--without-x'
> export CONF_OPT_GUI='--disable-gui'
> export CONF_OPT_FEAT='--with-features=tiny'
> export CONF_OPT_PERL='--disable-perlinterp'
> export CONF_OPT_PYTHON='--disable-pythoninterp'
> export CONF_OPT_TCL='--disable-tclinterp'
> export CONF_OPT_RUBY='--disable-rubyinterp'
> export CONF_OPT_MZSCHEME='--disable-mzschemeinterp'
> export CONF_OPT_CSCOPE='--disable-cscope'
> export CONF_OPT_MULTIBYTE='--disable-multibyte'
> export CONF_OPT_COMPBY='"[EMAIL PROTECTED]"'
> export CONF_OPT_NETBEANS='--disable-netbeans'
> export CONF_OPT_NLS='--disable-nls'
> export CONF_OPT_ACL='--disable-acl'
> export CONF_OPT_GPM='--disable-gpm'
> export CONF_OPT_SYSMOUSE='--disable-sysmouse'
> export CONF_ARGS='--with-vim-name=vi'
When I tried to run it, after eliminating the errors due to unsupported
statements (mostly :let and :function) in my own vimrc, I still got the
following error:
> Error detected while processing /usr/local/share/vim/vim72a/vimrc_example.vim:
> line 45:
> E538: No mouse support: mouse=a
I'm attaching the obvious fix.
Best regards,
Tony.
--
If mathematically you end up with the wrong answer, try multiplying by
the page number.
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_dev" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---
*** ../vim72a/runtime/vimrc_example.vim Mon Jun 16 20:49:18 2008
--- runtime/vimrc_example.vim Wed Jul 2 07:11:59 2008
***************
*** 42,48 ****
inoremap <C-U> <C-G>u<C-U>
" In many terminal emulators the mouse works just fine, thus enable it.
! set mouse=a
" Switch syntax highlighting on, when the terminal has colors
" Also switch on highlighting the last used search pattern.
--- 42,50 ----
inoremap <C-U> <C-G>u<C-U>
" In many terminal emulators the mouse works just fine, thus enable it.
! if has('mouse')
! set mouse=a
! endif
" Switch syntax highlighting on, when the terminal has colors
" Also switch on highlighting the last used search pattern.