No description
Find a file
Christ Degni c8ca8c256a
Merge pull request #5 from c-degni/case-in
Case sensitivity setting
2026-03-13 11:43:48 -04:00
.github/workflows Create release.yml 2025-05-14 04:24:16 -04:00
src Case sensitive 2026-03-13 11:42:51 -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 for now 2026-03-11 01:53:09 -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 Case sensitive 2026-03-13 11:42:51 -04:00
package-lock.json for now 2026-03-11 01:53:09 -04:00
package.json Case sensitive 2026-03-13 11:42:51 -04:00
README.md for now 2026-03-11 01:53:09 -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
  • 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

Imported dictionaries

In addition to the custom dictionary, dictionaries can be imported. Imported dictionaries can be added/removed in the plugin settings and must be Text Files (.txt) with one word on each line. You can view all imported dictionaries from the plugin settings.

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!