added nvim coc config files minus node modules
This commit is contained in:
parent
baac0fdd4f
commit
fc51cf5a4a
19405 changed files with 6211125 additions and 0 deletions
119
coc/extensions/node_modules/coc-json/package.json
generated
vendored
Normal file
119
coc/extensions/node_modules/coc-json/package.json
generated
vendored
Normal file
|
|
@ -0,0 +1,119 @@
|
|||
{
|
||||
"name": "coc-json",
|
||||
"version": "1.3.6",
|
||||
"description": "Json extension for coc.nvim",
|
||||
"main": "lib/index.js",
|
||||
"publisher": "chemzqm",
|
||||
"keywords": [
|
||||
"coc.nvim",
|
||||
"json"
|
||||
],
|
||||
"engines": {
|
||||
"coc": ">= 0.0.80"
|
||||
},
|
||||
"scripts": {
|
||||
"prepare": "node esbuild.js"
|
||||
},
|
||||
"activationEvents": [
|
||||
"onLanguage:json",
|
||||
"onLanguage:jsonc"
|
||||
],
|
||||
"contributes": {
|
||||
"configuration": {
|
||||
"type": "object",
|
||||
"title": "Json",
|
||||
"properties": {
|
||||
"json.enable": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "Enable json server"
|
||||
},
|
||||
"json.trace.server": {
|
||||
"type": "string",
|
||||
"default": "off",
|
||||
"enum": [
|
||||
"off",
|
||||
"messages",
|
||||
"verbose"
|
||||
]
|
||||
},
|
||||
"json.execArgv": {
|
||||
"type": "array",
|
||||
"default": [],
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"json.format.enable": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "Enable format for json server"
|
||||
},
|
||||
"json.maxItemsComputed": {
|
||||
"type": "number",
|
||||
"default": 5000,
|
||||
"description": "The maximum number of outline symbols and folding regions computed (limited for performance reasons)."
|
||||
},
|
||||
"json.schemaDownload.enable": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "When enabled, JSON schemas can be fetched from http and https locations.",
|
||||
"tags": [
|
||||
"usesOnlineServices"
|
||||
]
|
||||
},
|
||||
"json.schemas": {
|
||||
"type": "array",
|
||||
"scope": "resource",
|
||||
"description": "Schemas associations for json files",
|
||||
"default": [],
|
||||
"items": {
|
||||
"type": "object",
|
||||
"default": {
|
||||
"fileMatch": [
|
||||
"/my-file"
|
||||
],
|
||||
"url": "schemaURL"
|
||||
},
|
||||
"properties": {
|
||||
"url": {
|
||||
"type": "string",
|
||||
"default": "/user.schema.json"
|
||||
},
|
||||
"fileMatch": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string",
|
||||
"default": "MyFile.json"
|
||||
},
|
||||
"minItems": 1,
|
||||
"description": "File pattern to match."
|
||||
},
|
||||
"schema": {
|
||||
"$ref": "http://json-schema.org/draft-04/schema#",
|
||||
"description": "Url of json schema, support file/url protocol."
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"author": "chemzqm@gmail.com",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@chemzqm/tsconfig": "^0.0.3",
|
||||
"@types/node": "^10.12.0",
|
||||
"coc.nvim": "^0.0.80",
|
||||
"esbuild": "^0.8.29",
|
||||
"request-light": "^0.4.0",
|
||||
"rimraf": "^3.0.2",
|
||||
"strip-bom": "^4.0.0",
|
||||
"typescript": "^4.1.3",
|
||||
"vscode-languageserver-protocol": "^3.16.0",
|
||||
"vscode-uri": "^2.1.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"vscode-json-languageserver": "^1.3.4"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue