Autocomplete
Helps the user to input text quickly.
Plugin type: input helper, system.
Supported editors: documents, spreadsheets, presentations.
Download this plugin from the ONLYOFFICE App Directory and install it following the
desktop, on-premises,
or cloud installation instructions.
- Start typing a word. If the plugin finds some words in the dictionary, an input helper window with the found words will appear.
- Select the required option using the Down/Up arrow button and press the Enter button to complete the word.
Repository on GitHub: https://github.com/ONLYOFFICE/onlyoffice.github.io/tree/master/sdkjs-plugins/content/autocomplete.
- config.json, index.html, and code.js
- Icons
- The translations folder which contains translations into Russian, German, Spanish, Czech and French.
- The dictionary.js file contains words for autocompletion.
{
"name": "Autocomplete",
"nameLocale": {
"ru": "Autocomplete",
"fr": "Autocomplete",
"es": "Autocomplete",
"de": "Autocomplete"
},
"guid" : "asc.{A103601F-FDA0-418A-BC37-A514031894C0}",
"version" : "1.0.0",
"variations" : [
{
"description": "Use an input assistant while typing in the editors.",
"descriptionLocale": {
"ru": "Используйте ассистент набора текста при работе в редакторе.",
"fr": "Utilisez un assistant de saisie pendant que vous tapez dans les éditeurs.",
"es": "Utilice un asistente de entrada mientras escribe en los editores.",
"de": "Verwenden Sie einen Assistenten bei der Eingabe in den Editoren."
},
"url" : "index.html",
"icons" : ["resources/img/icon.png", "resources/img/icon@2x.png"],
"screens" : ["resources/store/screen_1.png"],
"isViewer" : false,
"EditorsSupport" : ["word", "slide", "cell"],
"isVisual" : false,
"isSystem" : true,
"initDataType" : "none",
"events" : [
"onInputHelperClear",
"onInputHelperInput"
],
"store": {
"background": {
"light" : "#F5F5F5",
"dark" : "#444444"
},
"screenshots" : ["resources/store/screenshots/screen_1.png"],
"icons" : {
"light" : "resources/store/icons",
"dark" : "resources/store/icons"
}
}
}
]
}
If you want to request a feature or report a bug regarding this plugin, use the issues section on GitHub.