Skip to content

Commit

Permalink
feat: Make Spanish case and accent sensitive by default. (#747)
Browse files Browse the repository at this point in the history
* feat: Make Spanish case and accent sensitive by default.

* Update cspell-ext.json
  • Loading branch information
Jason3S committed Nov 4, 2021
1 parent 0866cfa commit 18b18f1
Showing 1 changed file with 6 additions and 25 deletions.
31 changes: 6 additions & 25 deletions dictionaries/es_ES/cspell-ext.json
Original file line number Diff line number Diff line change
@@ -1,42 +1,23 @@
// cSpell Settings
{
"id": "es-es",
"version": "0.2",
"readonly": true,
"name": "Spanish Dictionary (Spain)",
"description": "Spanish Dictionary (Spain)",
// List of dictionary files to add to the global list of dictionaries
"dictionaryDefinitions": [
{
"name": "es-es",
"file": "./Spanish.trie.gz",
"path": "./Spanish.trie.gz",
"description": "Spanish Dictionary (Spain)"
}
],
// Dictionaries to always be used.
// Generally left empty
"dictionaries": [],
// Language Rules to apply to matching files.
// Files are matched on `languageId` and `local`
"languageSettings": [
{
// VSCode languageId. i.e. typescript, java, go, cpp, javascript, markdown, latex
// * will match against any file type.
"languageId": "*",
// Language local. i.e. en-US, de-AT, or ru. * will match all locals.
// Multiple locals can be specified like: "en, en-US" to match both English and English US.
"local": "es, es_ES",
// By default the whole text of a file is included for spell checking
// Adding patterns to the "includeRegExpList" to only include matching patterns
"includeRegExpList": [],
// To exclude patterns, add them to "ignoreRegExpList"
"ignoreRegExpList": [],
// regex patterns than can be used with ignoreRegExpList or includeRegExpList
// Example: "pattern": [{ "name": "mdash", "pattern": "—" }]
// This could be included in "ignoreRegExpList": ["mdash"]
"patterns": [],
// List of dictionaries to enable by name in `dictionaryDefinitions`
"dictionaries": ["es-es"],
// Dictionary definitions can also be supplied here. They are only used iff "languageId" and "local" match.
"dictionaryDefinitions": []
"locale": "es, es_ES",
"caseSensitive": true,
"dictionaries": ["es-es"]
}
]
}

0 comments on commit 18b18f1

Please sign in to comment.