https://github.com/shadowwa/coc-unicode
unicode source completion for coc.nvim
https://github.com/shadowwa/coc-unicode
coc-extension coc-nvim neovim unicode vim
Last synced: about 2 months ago
JSON representation
unicode source completion for coc.nvim
- Host: GitHub
- URL: https://github.com/shadowwa/coc-unicode
- Owner: shadowwa
- License: mit
- Created: 2025-09-20T12:19:54.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-09-20T12:45:17.000Z (9 months ago)
- Last Synced: 2025-09-20T14:44:06.352Z (9 months ago)
- Topics: coc-extension, coc-nvim, neovim, unicode, vim
- Language: JavaScript
- Homepage:
- Size: 231 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Coc Unicode
Unicode completion source for [coc.nvim](https://github.com/neoclide/coc.nvim).
## Install
```vim
:CocInstall coc-unicode
```
## Configuration
To complete unicode source, type `uc-` as trigger pattern.
It is also possible to change the unicode trigger pattern by putting
`"coc.source.unicode.triggerPatterns": ["TRIGGERPATTERN"]` in your `coc-settings.json`
By default this source is only activated for markdown file, you can add other filetype by putting
`"coc.source.unicode.filetypes": ["FILETYPE1", "FILETYPE2"]` in your `coc-settings.json`
## Update unicode
To update the dictionary file:
```bash
ruby unicodelist.rb
```
Based on the [coc-emoji](https://github.com/neoclide/coc-sources/) extension and [vim-characterize](https://github.com/tpope/vim-characterize).