https://github.com/pseyfert/vim-unicodeit
a vim plugin around the backend code of unicodeit.net
https://github.com/pseyfert/vim-unicodeit
Last synced: 12 months ago
JSON representation
a vim plugin around the backend code of unicodeit.net
- Host: GitHub
- URL: https://github.com/pseyfert/vim-unicodeit
- Owner: pseyfert
- License: agpl-3.0
- Created: 2019-09-13T09:57:30.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-15T06:43:20.000Z (about 6 years ago)
- Last Synced: 2025-04-12T04:00:50.312Z (about 1 year ago)
- Language: Python
- Size: 14.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vim-unicodeit
a vim plugin around the backend code of unicodeit.net
## Installation
Follow the installation instructions of your favourite vim plugin manager.
Make sure git submodules are enabled and checked out as well.
## Usage
Check the contents of the `plugin/unicodeit.vim` file. By default, `^U u` is registered in visual mode (including visual line mode and visual block mode). It converts latex code in the highlighted region to unicode.
## Example
```
1 This is some file content
2 Here I write \alpha \neq \psi.
```
When highlighting line 2 with `shift + V` and triggering the plugin `^U u` this turns into
```
1 This is some file content
2 Here I write α ≠ ψ.
```