> --
> --
> You received this message from the "vim_use" maillist.
> Do not top-post! Type your reply below the text you are replying to.
> For more information, visit
http://www.vim.org/maillist.php
>
> ---
> You received this message because you are subscribed to the Google Groups "vim_use" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to
vim_use+u...@googlegroups.com.
> For more options, visit
https://groups.google.com/d/optout.
My [translit3][1] plugin contains transsymb-math transliteration
table, so you may use
:Tr3Command tof start transsymb-math
:" or
:let g:tr3_DefaultTranssymb = 'transsymb-math' | " Better put this
in the vimrc
\ts
:"`\ts` is normal-mode command that runs `:Tr3Command tof start`
to make `^3` automatically transformed into `³` as typed. Arrows `<-`
and `->` are also transformed into `←` and `→`. Greek letters are also
supported: e.g. `|a` is `α`. `:Tr3Command add -> → to transsymb-math`
can add what is missing.
With default settings though `%` temporary disables/enables
transliteration as you type and `@` breaks sequence (`^@3` results in
`^3`, this is needed to prevent some transformations like “shema” →
“шема” (error), while needed “s@hema” → “схема” (“scheme” in
Russian)), so you may need to choose another key or disable these
features.
[1]:
https://bitbucket.org/ZyX_I/translit3