No description
Find a file
2025-06-29 17:09:23 -04:00
.github/workflows Create release.yml 2025-05-14 04:24:16 -04:00
src Fix dropdown not closing on plugin disable (windows), add cs subdict 2025-06-29 16:57:32 -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
esbuild.config.mjs file structure and bug fixes 2025-05-14 18:11:21 -04:00
LICENSE Updated README and added MIT licence 2025-05-14 04:18:44 -04:00
manifest.json Version bump 2025-06-29 17:09:23 -04:00
package-lock.json Address PR comments 2025-06-17 14:13:25 -04:00
package.json Version bump 2025-06-29 17:09:23 -04:00
README.md file structure and bug fixes 2025-05-14 18:11:21 -04:00
styles.css Changed custom dict scrollbar and fixed suggestion dropdown 2025-05-12 04:15:20 -04:00
tsconfig.json file structure and bug fixes 2025-05-14 18:11:21 -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

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 the enter/tab keys
  • Navigate dropdown suggestions with the up/down arrow keys
  • Hide the dropdown with the esc key at which point all keys have their default functionalities
  • Also, to use the default enter key functionality, additionally hold the shift key: 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)

Thanks to everyone using the plugin!