Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
kkiyama117 committed Dec 18, 2020
1 parent 92d635e commit 195ea73
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1,812 deletions.
43 changes: 34 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
"publisher": "kkiyama117 <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"keywords": ["coc.nvim", "toml"],
"keywords": [
"coc.nvim",
"toml"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kkiyama117/coc-toml.git"
Expand Down Expand Up @@ -49,6 +52,7 @@
"@types/node-fetch": "^2.5.7",
"@wasm-tool/rollup-plugin-rust": "^1.0.5",
"coc.nvim": "0.0.79",
"ini": ">=1.3.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.0",
"rimraf": "^3.0.2",
Expand Down Expand Up @@ -76,9 +80,15 @@
"languages": [
{
"id": "toml",
"aliases": ["TOML"],
"extensions": [".toml"],
"filenames": ["Cargo.lock"],
"aliases": [
"TOML"
],
"extensions": [
".toml"
],
"filenames": [
"Cargo.lock"
],
"configuration": "./language-configuration.json"
}
],
Expand Down Expand Up @@ -109,8 +119,12 @@
"semanticTokenScopes": [
{
"scopes": {
"tomlArrayKey": ["variable.key.array.toml"],
"tomlTableKey": ["variable.key.table.toml"]
"tomlArrayKey": [
"variable.key.array.toml"
],
"tomlTableKey": [
"variable.key.table.toml"
]
}
}
],
Expand Down Expand Up @@ -208,7 +222,10 @@
},
"toml.formatter.indentString": {
"description": "The substring that is used for indentation, should be tabs or spaces, but technically can be anything. Uses the IDE setting if not set.",
"type": ["string", "null"],
"type": [
"string",
"null"
],
"scope": "resource",
"default": null
},
Expand Down Expand Up @@ -266,14 +283,22 @@
"description": "Whether to update new builtin schema associations.",
"scope": "resource",
"type": "string",
"enum": ["ask", "always", "never"],
"enum": [
"ask",
"always",
"never"
],
"default": "ask"
},
"toml.extension.actions.schema.removeOldBuiltins": {
"description": "Whether to remove old builtin schema associations.",
"scope": "resource",
"type": "string",
"enum": ["ask", "always", "never"],
"enum": [
"ask",
"always",
"never"
],
"default": "ask"
},
"toml.debug": {
Expand Down
Loading

0 comments on commit 195ea73

Please sign in to comment.