惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
B
Blog
S
SegmentFault 最新的问题
WordPress大学
WordPress大学
P
Proofpoint News Feed
Hugging Face - Blog
Hugging Face - Blog
MyScale Blog
MyScale Blog
A
About on SuperTechFans
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
The Blog of Author Tim Ferriss
MongoDB | Blog
MongoDB | Blog
博客园 - 【当耐特】
The Cloudflare Blog
F
Fortinet All Blogs
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
宝玉的分享
宝玉的分享
罗磊的独立博客
量子位
有赞技术团队
有赞技术团队
V
V2EX
Engineering at Meta
Engineering at Meta

jdhao's digital space

Conversion between base64 and OpenCV or PIL Image 腾讯云对象存储博客图床开启 CDN 加速(不需要购买额外域名) Search and Replace in Multiple Files in Vim/Neovim Change Table Column Width in LaTeX Image or Table Side by Side in LaTeX LaTeX 并排显示图像或表格 Firenvim: Neovim inside Your Browser Content inside HTML tags missing in Latest Hugo? Creating Markdown Front Matter with Ultisnips Labelme JSON 标注格式转 voc XML 格式 Nifty Nvim Techniques That Make My Life Easier -- Series 6 macOS 下如何为视频制作字幕 Running Command Asynchronously inside Neovim Resolving Merge Conflict after Git Stash Pop Pylint: command not found? A Hands-on Experience with Neovim's Built-in LSP Support How to Convert PDF to Images with Imagemagick 互联网上常用缩略语集锦 File Backup in Neovim Converting PDF Pages to Images with Poppler Nifty Nvim Techniques That Make My Life Easier -- Series 5 Neovim Configuration for System-wide Use How to sort a list of tuple or list in Python -- lambda or itemgetter? Building A Vim Statusline from Scratch 人类第一颗原子弹爆炸始末 Distributed Training in PyTorch with Horovod Learning Expect Programming Essential Knowledge about SSH Nifty LaTeX Techniques -- Series 1 更改 Adsense 邮寄地址,重新寄送 PIN
How to Insert Unicode Characters in Neovim/Vim
2020-10-07 · via jdhao's digital space

Except for the ASCII characters, it is often not straightforward to insert Unicode characters into Vim/Neovim. Below I will summarize a few ways to enter Unicode characters inside Neovim/Vim.

I assume that you are using UTF-8 encoding (:set encoding=utf-8), and you are using a font with proper support for Unicode symbols, e.g., nerd-fonts. Otherwise, some Unicode characters shown below may not show correctly on your terminal.

Use Ctrl-V to insert character#

The native way to insert a Unicode character is via Ctrl + V. In insert mode, we first press Ctrl + V, and then for Unicode characters whose code points1 are less than:

  • ffff (in hex format): press u ( lower case), followed by its four-digit hex representation.
  • 7fffffff (in hex format): press U ( upper case), followed by its eight-digit hex representation.

For example, to insert the middle dot symbol (·), we can press <C-v>u00b7 or <C-v>ub7 followed by ESC. To insert the crying cat emoji (😿), we can press <C-v>U0001f63f2 or <C-v>U1f63f followed by ESC.

Use special escape sequence notation#

We can also use special escape sequence to represent a character. To represent middle dot in the above section, use \u00b7 or \ub7. To represent the cry cat, use \U0001f63f or \U1f63f. Backspace is \b and Escape is \e.

For more details, see :h string.

Use plugin unicode.vim#

To ease manipulation of Unicode characters, there is also a plugin called unicode.vim.

Unicode.vim provides an enhanced version of the built-in ga (see :h ga) operation. To use it, add the following setting to init.vim:

nmap ga <Plug>(UnicodeGA)

It also provides several useful commands:

  • :UnicodeName: show the Unicode info about character under cursor.
  • :UnicodeSearch: search a Unicode character. It supports regular expression. For example, to search Unicode character containing CAT, we can use :UnicodeSearch \<CAT\>. The bang version (:UnicodeSearch!) can also insert the chosen character into cursor position.

Insert-mode completion#

Unicode.vim also provides insert mode completion for Unicode characters. We can type some character in the name of Unicode character, and press <C-X><C-Z> (i.e., Ctrl+X followed by Ctrl+Z). Alternatively, we can also provide the Unicode code point of a character and press <C-X><C-Z>.

For example, to insert middle dot, we can:

  • type dot, and press <C-X><C-Z> (A completion menu will pop up with candidate character).

  • type U+00b7, and press <C-X><C-Z>.

If you have fzf installed, you can also activate the fuzzy search feature to search Unicode (see :h unicode-fuzzy-insertion).

Use digraphs#

Vim/Neovim also provides a feature called digraphs (see :h digraphs). Some non-printed character or commonly-used Unicode characters can be easily inserted using this feature. The command :digraphs will print the pre-defined digraphs table, like the following:

......
PI ¶  182    pp ¶  182    .M ·  183    ~. ·  183    ', ¸  184    1S ¹  185
A' Á  193    A> Â  194    A^ Â  194    A? Ã  195    A~ Ã  195    A: Ä  196
......

In each digraph group, the first two characters are the codes for the actual character, the middle being the actual character, and the last being the decimal value of the characters. For example, the codes for middle dot is .M, and its decimal number is 183.

To enter a character, press Ctrl-K in insert mode, followed by its codes. For example, to insert middle dot using digraphs, press <C-K>.M. To insert the copyright symbol (©), press <C-K>Co. To insert trademark symbol (), press <C-K>TM.

Define your own digraphs#

We can also define our own digraphs. The syntax is:

:digraphs {char1}{char2} {number}

{number} is the decimal value for the Unicode character. For example, to define a digraph entry for the loud crying face emoji (😭, decimal value 128557), use the following command:

Then, in insert mode, pressing <C-K>lc will insert this emoji.

References#