Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>AbolishNew to Visual Studio Code? Get it now.
Abolish

Abolish

Mark Skelton

| (0) | Free
Auto-correct misspelled words using Vim Abolish syntax
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Abolish

Auto correct misspelled words

Extension Settings

abolish.defaultDictionaryEnabled

Default: true

Uses a default dictionary of misspelled words that should be auto-corrected.

abolish.dictionary

Default: {}

A dictionary of misspelled words to correct. If abolish.defaultDictionaryEnabled is true, this will be merged with the default dictionary.

{
  "abolish.dictionary": {
    "hte": "the",
    "mispell": "misspell",
    "mispelled": "misspelled",
    "cosnt": "const",
    "functoin": "function"
  }
}

You can also use Vim Abolish syntax:

{
  "abolish.dictionary": {
    "{despa,sepe}rat{e,es,ed,ing,ely,ion,ions,or}": "{despe,sepa}rat{}"
  }
}

This will be automatically converted to the following

{
  "desparate": "desperate",
  "desparates": "desperates",
  "desparated": "desperated",
  "desparating": "desperating",
  "desparately": "desperately",
  "desparation": "desperation",
  "desparations": "desperations",
  "desparator": "desperator",
  "seperate": "separate",
  "seperates": "separates",
  "seperated": "separated",
  "seperating": "separating",
  "seperately": "separately",
  "seperation": "separation",
  "seperations": "separations",
  "seperator": "separator"
}
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft