> - For characters which I rarely need and which have no preset digraph
> (such as the majority of CJK characters), I use the |i_CTRL-V_digit|
> method directly, typing the Unicode codepoint in hex as ^Vuxxxx until
> U+FFFF, or ^VUxxxxx after that (where the x's represent hex digits) --
> if necessary, after looking them up at
> http://www.unicode.org/charts/charindex.html (the Unicode Character Index).
>
> Best regards,
> Tony.

Thanks for the nice chart. From within Vim, we can also generate all
CJK with one loop. If CJK can be shown on Vim, then the following
function can display all the magic:

function! Unicode()
  for i in range(19968,40870)
    $put=printf('%x %d ',i,i).nr2char(i)
  endfor
endfunction

Sean

--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_use" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---

Reply via email to