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"
}