Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/natsukagami/kakoune-unicode-math
Simple plugin to add math unicode input to kakoune
https://github.com/natsukagami/kakoune-unicode-math
Last synced: 4 days ago
JSON representation
Simple plugin to add math unicode input to kakoune
- Host: GitHub
- URL: https://github.com/natsukagami/kakoune-unicode-math
- Owner: natsukagami
- Created: 2022-10-04T12:26:55.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-04-11T11:18:08.000Z (almost 2 years ago)
- Last Synced: 2025-01-29T22:12:03.353Z (5 days ago)
- Language: KakouneScript
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# kakoune-unicode-math
A simple plugin that provides math inputs to Kakoune.
## Install
Clone this repo into `autoload`, and add
```
require-module unicode-math
```
to your `kakrc`.## Usage
The plugin provides a single function, `insert-unicode`, which should be called in insert mode.
It displays a list of symbols to be added as parameter autocomplete.You should bind it to an insert-mode key, something like
```
map global insert ': insert-unicode '
```