A.J.Mechelynck wrote:
striker wrote:
I successfully compiled vim 7 on Mac OS X, but neglected to set
options for things like Python, Perl, and digraphs, etc...
I did the following to re-compile:
>make distclean
>./configure --enable-perlinterp --enable-pythoninterp
--enable-tclinterp --enable-fontset --with-features=huge
>make
>make install
The installation progressed fine and the interpreters work fine. The
digraphs are still minimal.
Do I need to re-compile with an option for digraphs or is there a way
to enable digraph support with re-compiling?
Any help would be greatly appreciated.
Kevin
The :dig command (without arguments) lists the digraphs defined for the
current 'encoding'. To see all currently defined digraps, first set
'encoding' to UTF-8. This, of course, requires has("multi_byte").
Best regards,
Tony.
P.S. Before compiling Vim (with "make" at top level) I source the following
(sourcing with "source" or ".", not running by straightforward invocation) in
bash:
export CONF_OPT_GUI='--enable-gnome-check'
export CONF_OPT_PERL='--enable-perlinterp'
export CONF_OPT_PYTHON='--enable-pythoninterp'
export CONF_OPT_TCL='--enable-tclinterp --with-tcl=tclsh8.4'
export CONF_OPT_RUBY='--enable-rubyinterp'
export CONF_OPT_MZSCHEME='--enable-mzschemeinterp'
export CONF_OPT_CSCOPE='--enable-cscope'
export CONF_OPT_MULTIBYTE='--enable-multibyte'
export CONF_OPT_FEAT='--with-features=huge'
export CONF_OPT_COMPBY='"[EMAIL PROTECTED]"'
Best regards,
Tony.