> Could be. What's the answer to
>
> :verbose setglobal bomb?
>
> (with the question mark)?
>
i have the following in my .vimrc
if has("multi_byte")
if &termencoding == ""
let &termencoding = &encoding
endif
set encoding=utf-8 "Sets the character encoding used inside Vim.
setglobal fileencoding=utf-8 bomb
set fileencodings=ucs-bom,utf-8,latin1,cp1253
endif
should i change the following line ?
setglobal fileencoding=utf-8 bomb
>>
>>
>> PS: is there any way to "pipe" the output of a command (i.e vim
>> netrw.vba) to a buffer? So that i can provide the exact error...
>
> You can capture the messages into a file, a register or a variable. If
> you capture them into @+ (the clipoard) you can then paste that into
> your mailer.
>
> see
> :help :redir
>
> There is quite a lot of it; the last one (":redir END" to terminate
> redirection) is important.
>
great trick! i had no idea :) ... although it would be simpler if i
could just copy from the command line...
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_use" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---