No description
Find a file
2025-05-14 04:18:44 -04:00
.editorconfig Initial commit 2025-05-06 16:35:02 -04:00
.eslintignore Initial commit 2025-05-06 16:35:02 -04:00
.eslintrc Initial commit 2025-05-06 16:35:02 -04:00
.gitignore Initial commit 2025-05-06 16:35:02 -04:00
.npmrc Initial commit 2025-05-06 16:35:02 -04:00
dictionary.ts Changed custom dict scrollbar and fixed suggestion dropdown 2025-05-12 04:15:20 -04:00
esbuild.config.mjs base works 2025-05-12 01:36:55 -04:00
LICENSE Updated README and added MIT licence 2025-05-14 04:18:44 -04:00
main.ts Added right click dict add and fixed irresponsive dropdown 2025-05-13 16:31:10 -04:00
manifest.json Updated README and added MIT licence 2025-05-14 04:18:44 -04:00
package-lock.json base works 2025-05-12 01:36:55 -04:00
package.json base works 2025-05-12 01:36:55 -04:00
README.md Updated README and added MIT licence 2025-05-14 04:18:44 -04:00
settings.ts Updated README and added MIT licence 2025-05-14 04:18:44 -04:00
styles.css Changed custom dict scrollbar and fixed suggestion dropdown 2025-05-12 04:15:20 -04:00
trie.ts base works 2025-05-12 01:36:55 -04:00
tsconfig.json Initial commit 2025-05-06 16:35:02 -04:00
ui.ts Added right click dict add and fixed irresponsive dropdown 2025-05-13 16:31:10 -04:00
version-bump.mjs Initial commit 2025-05-06 16:35:02 -04:00
versions.json Initial commit 2025-05-06 16:35:02 -04:00
words.ts Changed custom dict scrollbar and fixed suggestion dropdown 2025-05-12 04:15:20 -04:00

Text Autocomplete

Utilize text autocomplete to type more efficiently.

Features

  • A dropdown of suggested words of the currently typed word
  • Replace the currently typed word with a suggestion from the dropdown by:
    • Selecting a suggestion with your cursor
    • Selecting the highlighted suggestion with enter/tab
  • Navigate dropdown suggestions with the up/down arrows
  • Hide the dropdown with escape at which point all keys have their default functionalities
  • Also, use the default enter functionality by additionally holding shift: shift + enter

Custom dictionary

The custom dictionary is a list of words you curate that is added to the plugin's dictionary. The words from the custom dictionary can then be suggested in future dropdowns. You can view all words in the custom dictionary from the plugin settings.

Modification

  • Words can be individually added to the custom dictionary in the following two ways:
    • From the plugin settings
    • In the context menu of selected text (accessible via right click)
  • Words can be individually removed from the custom dictionary only from within the plugin settings
  • The custom dictionary can be reset in the plugin settings as well

Additional

  • The maximum number of suggestions is modifiable in the plugin settings (3-10)
  • The plugin can be disabled from the plugin settings
  • English is the only supported language at the moment
  • For the time being, all features are disabled within code blocks (typing within code blocks is not supported)