What is a general term for a program similar to Texter, AutoHotKey, PhraseExpress or the shortcut functionality on the old Palm OS?
4 Answers
Maybe it is Autocomplete.
Autocomplete is a feature provided by many web browsers, e-mail programs, search engine interfaces, source code editors, database query tools, word processors, and command line interpreters. Autocomplete involves the program predicting a word or phrase that the user wants to type in without the user actually typing it in completely. This feature is effective when it is easy to predict the word being typed based on those already typed, such as when there are a limited number of possible or commonly used words (as is the case with e-mail programs, web browsers, or command line interpreters), or when editing text written in a highly-structured, easy-to-predict language (as in source code editors). Autocomplete speeds up human-computer interactions in environments to which it is well suited. Autocomplete features are often enabled by default, and disabling or defeating them can sometimes be difficult for users to accomplish.
- 57,881
- 5,500
Never used any of the others... but since AutoHotKey is on the list... Macros
- 57,881
- 2,627
More generically, you could divide it under Text / Desktop automation.
- 57,881
- 55,953
Input method is close, though it's usually used when the target of each replacement is a single character.
When the idea is to rectify erroneous input, this is often called autocorrection. The term is sometimes used even is the feature is mostly used to expand abbreviations. Another term is autocompletion, mostly used when the original text is a prefix of the replacement text.
Emacs calls this abbrevs. Vim doesn't have a more specific name than insert mode mapping. Neither term is likely to be understood by people who don't use the program in question.
If you're writing the documentation for a program that has a similar feature, I'd go for “(automatic) abbreviation expansion” if it's a generic feature, or “autocorrection” or “autocompletion” or “input method” if it has a specific focus.
If you're looking for a generic phrase for Google searches, I think you're out of luck.
- 72,151