https://github.com/ruedigerblock/vim-substitute-latex
A Vim Plugin to replace common LaTeX Commands into Unicode Symbols
https://github.com/ruedigerblock/vim-substitute-latex
latex vim-plugin
Last synced: 3 months ago
JSON representation
A Vim Plugin to replace common LaTeX Commands into Unicode Symbols
- Host: GitHub
- URL: https://github.com/ruedigerblock/vim-substitute-latex
- Owner: ruedigerblock
- Created: 2025-03-09T16:52:03.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-03-09T17:01:41.000Z (3 months ago)
- Last Synced: 2025-03-09T18:18:22.640Z (3 months ago)
- Topics: latex, vim-plugin
- Language: Vim Script
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vim-substitute-latex
This Plugin is used to automatically replace common LaTeX commands with their respective UTF-8 Symbols.
This means:
`\Lambda \xor \zeta` becomes `Λ ⊻ ζ`.
This is handy for writing Math in Markdown or in Julia Source Code.
## Installation
Utilize your favorite Plugin Manager:
```
Plugin 'ruedigerblock/vim-substitute-latex'
```## Auto Completion
If you use [asyncomplete.vim](https://github.com/prabirshrestha/asyncomplete.vim) paste this in your `.vimrc`:
```
au User asyncomplete_setup call asyncomplete#register_source({
\ 'name': 'latex-math-symbols',
\ 'allowlist': ['*'],
\ 'completor': function('LatexSymbolCompletor'),
\ })
```