On 2012-01-12, Cesar Romani wrote:

> I also noticed that if I keep intact $VIMRUNTIME/filetype.vim and remove
> the line:
> autocmd FileType text setlocal textwidth=78
> from $VIMRUNTIME/vimrc_example.vim it also works.
> Isn't there any possibility to customize $VIMRUNTIME/vimrc_example.vim
> on an after subdirectory?

Not in an after subdirectory, but you can delete that autocommand in
your ~/.vimrc with this command, executed after vimrc_example.vim is
sourced.

    au! vimrcEx FileType text

See

    :help autocmd-remove

and note that the problematic autocommand was defined within the
vimrcEx augroup.

Regards,
Gary

-- 
You received this message from the "vim_use" 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

Reply via email to