2024-01-02 16:45:15 +01:00
|
|
|
# Learn irregular English verbs in Emacs
|
|
|
|
## learning-irregular-verbs-in-English.el
|
|
|
|
|
|
|
|
![Demo](demo.png)
|
|
|
|
|
|
|
|
## Install
|
|
|
|
|
|
|
|
Add in your `init.el`.
|
|
|
|
|
|
|
|
```elisp
|
|
|
|
(use-package learning-irregular-verbs-in-English
|
|
|
|
:straight (:host github :repo "tanrax/learning-irregular-verbs-in-English.el" :files ("learning-irregular-verbs-in-English.el"))
|
|
|
|
:ensure t)
|
|
|
|
```
|
2024-01-08 19:14:11 +01:00
|
|
|
|
|
|
|
## Configure (Optional)
|
|
|
|
|
|
|
|
Shows the translation of the verb when resolving or failing.
|
|
|
|
|
|
|
|
Only available in Spanish.
|
|
|
|
|
|
|
|
```elisp
|
|
|
|
(setq learning-irregular-verbs-in-English--show-translation 'es)
|
|
|
|
```
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
```
|
|
|
|
M-x learning-irregular-verbs-in-English
|
|
|
|
```
|
|
|
|
|
|
|
|
## Controls
|
|
|
|
|
|
|
|
| Key | Description |
|
|
|
|
| --- | --- |
|
|
|
|
| `TAB` | Move to the next field |
|
|
|
|
| `S-TAB` | Move to the previous field |
|
|
|
|
| `RET` | Click on the button |
|
|
|
|
| `q` | Quit |
|