An open API service indexing awesome lists of open source software.

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

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'),
\ })
```