On Tuesday, April 1, 2014 10:46:54 AM UTC-5, Ben Fritz wrote: > On Tuesday, April 1, 2014 1:10:37 AM UTC-5, [email protected] wrote: > > On win7 x64 using VIM 7.4, I get an error with gVim upon reading the > > _vimrc, when Unicode chars are in the listchars section. A simple example > > to trigger would read: > > > > set listchars=eol:¶ > > > > I get an "Error detected...E474 Invalid argument: set listchars=eol:¶" > > popup error dialog. > > > > An alternative to ZyX's suggestion of using the "scriptencoding" command to > tell Vim what encoding to read the vimrc in, you could also use the codepoint > value in a string to set the listchars: > > exec "set listchars=eol:\u00B6"
Or if you prefer: let &listchars="eol:\u00B6" -- -- 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.
