On 2015-04-03 10:55, 'Paul' via vim_use wrote: > if I type C-K PR to get a right triangle ▶, vim just shows an empty > box. But it does show up triangle ▲ if I type C-K UT. Does anyone > know how to set up vim so that it will show all symbols in the > digraph table?
This is likely an issue with either your terminal or your 'guifont' setting. If you're using (non-g)vim in a terminal, then its ability to render characters is limited by the terminal's awareness of extended glyphs. E.g., you might try running "uxterm" (the Unicode-aware xterm) instead of "xterm". Also, it may be that the terminal or gvim knows how to render it, but that you're using a font in that environment that doesn't support the given glyph. If you're using gvim, enter the character and then try changing your 'guifont' setting :set guifont=* and see if some other font properly renders the triangle. For your terminal, you'd have to check its settings to determine which font it's using and try others to see if they support the glyph. -tim -- -- 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/d/optout.
