admin管理员组

文章数量:1295269

I'm using Neovim and want to use listchars to replace certain Unicode code points, such as U+3000 (Ideographic Space) with U+2B1C (White Large Square).

vim.opt.listchars = {
  tab = '→ ',
  -- space = '•',
  trail = '·',
  -- extends = '>',
  -- precedes = '<',
  -- eol = '⏎',
  nbsp = ' ',
  -- ['U+3000'] = '⬜' -- 

本文标签: luaCustomizing and ColorHighlighting Specific Unicode Characters in NeovimStack Overflow