A small background utility that converts selected LaTeX code into Unicode characters in-place. Default hotkey is Ctrl + Shift + L, but it can be changed by modifying main.rs.
This project requires you to have Rust installed.
- Clone:
git clone git@github.com:Yendric/ctrl.tex - Run with
cargo run --release(The app runs in the background) - Select some LaTeX text in any text input
- Press
Ctrl + Shift + L - The selection will be replaced by its Unicode equivalent
The app listens for the hotkey globally. When pressed, it simulates a Ctrl + C to copy the selected text to the clipboard, processes it, and then simulates a Ctrl + V to paste the converted text back.
Feel free to create an issue/PR if you have suggestions or find mistakes.