On Wednesday, December 18, 2013 4:08:11 PM UTC-6, Ari wrote:
> Hi,
> 
> I'm using Gvim on Windows 8 and I've configured vim to show invisible 
> characters using (ctrl-vu) unicode characters:
> 
> set listchars=tab:U+25B8 ,eol:U+00AC
> 

Two things wrong. First, this format for Unicode characters is not supported by 
Vim. Second, you need to escape any space characters in a :set command with a 
backslash.

Either do this:

  " specify listchars with literal unicode in a :set command
  scriptencoding utf-8
  set listchars=tab:▸\ ,eol:¬

Or this:

  " specify listchars using a string specifying Unicode codepoints
  let &listchars="tab:\u25B8 ,eol:\u00AC"

-- 
-- 
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

--- 
You received this message because you are subscribed to the Google Groups 
"vim_use" 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/groups/opt_out.

Reply via email to