On Tue, Dec 8, 2015 at 10:29 AM, Viacheslav Lotsmanov
<[email protected]> wrote:
> Hi there. I built vim v7.4.963 from git with this configure flags:
>
> --enable-luainterp --enable-perlinterp --enable-python3interp
> --enable-tclinterp --enable-rubyinterp --enable-cscope --with-gnome
>
> For some reason I don't have conceal* options.
>
> `set conceallevel?` gives me a message: “E519: Option not supported:
> conceallevel?”. And conceals doesn't work.
>
> Can anyone explain me why please? And what I need to do to make it work?

As seen in the left margin of ":help +conceal" you need at least a Big
build to get the +conceal feature compiled-in. Now if you don't tell
configure which build size you want, the default is a Normal build.

So you need to tell configure --with-features=big or (IMHO preferably)
--with-features=huge

Before I compile Vim, I have my bash shell source (not run) the
following script which is encoded ('fileencoding') either in Latin1 or
in UTF-8 with no BOM (i.e. with :setlocal nobomb):

#!/bin/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.6'
export CONF_OPT_RUBY='--enable-rubyinterp'
export CONF_OPT_LUA='--enable-luainterp'
export CONF_OPT_MZSCHEME='--disable-mzschemeinterp'
#export CONF_OPT_PLTHOME='--with-plthome=/usr/local/plt'
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]"'

The uncommented lines in this script (those not starting with #) set
environment variables which will be picked up by make evry time I
compile Vim in the same directory. So I would recommend that, after
suitably modifying this file (you would need to alter at least the
last line) you drop it into your Vim build directory (under any
suitable name, let's say "myconfig" without the quotes) then make sure
your shell is a bash-compatible one (i.e. NOT csh or tcsh) and run the
following:

source myconfig
make reconfig
make install

Type these commands at the prompt so if anything goes wrong (if, let's
say, "make reconfig" stops halfway with an error message) you can
notice it and stop.


Best regards,
Tony.

-- 
-- 
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

--- 
You received this message because you are subscribed to the Google Groups 
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Raspunde prin e-mail lui