I find it useful for quick text entry and spell checking. When the popup window appears, either click on the word you want, or press the up arrow key and then right or left arrow keys to select the word you want, and then press [Enter]. If the word you want isn't there, type some more characters. Pressing a punctuation key after [Enter] will auto delete the trailing space. It's easier than it sounds. Enjoy!
If you're interested in trying it, copy this "Hotkey" to your AHK file and give it a go.
Code: Select all
;Predictive text toggle
;Requires AutoHotkey v2+
;Version 1 - 2024/03/23
;by LightRecon - lightreconstruction@gmail.com
#t::
{
PTValue := RegRead("HKEY_CURRENT_USER\SOFTWARE\Microsoft\Input\Settings", "EnableHwkbTextPrediction")
If PTValue = 0
{
RegWrite 1, "REG_DWORD", "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Input\Settings", "EnableHwkbTextPrediction"
result := MsgBox("Predictive Text is ON",,"T2")
}
else
{
RegWrite 0, "REG_DWORD", "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Input\Settings", "EnableHwkbTextPrediction"
result := MsgBox("Predictive Text is OFF",,"T2")
}}
This is a AutoHotkey 2+ "Hotkey", but can be modified to work with previous versions. I have tested it on Win10, butshould also work on Win11. And it might work with 7 or 8. YMMV
CAVEAT: One interesting thing about the text prediction feature in Windows is that it learns your typing habits, so it can make better suggestions in the future. Even though this feature can be pretty useful, it can also be problematic. For example, the text prediction engine can even learn your passwords as you type them. Since this feature is mainly intended as an assistive technology, in certain situations it is not safe.
- LightRecon -