abouttreesummaryrefslogcommitdiff
path: root/srcs/juloo.keyboard2/Suggestions.java
AgeCommit message (Collapse)AuthorFilesLines
2025-12-28Enter the suggestion when it's pressedJules Aguillon1-2/+11
The current word is replaced by the pressed suggestion.
2025-12-28Track the currently typed wordJules Aguillon1-0/+27
The `CurrentlyTypedWord` class tracks the word that is being typed. It's implemented on the same model as Autocapitalisation and avoid expensive IPC calls when possible. The `Suggestions` class is where the suggestion lookup should go. It currently just echoes the current word.