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
81
coc/extensions/node_modules/coc-pairs/package.json
generated
vendored
Normal file
81
coc/extensions/node_modules/coc-pairs/package.json
generated
vendored
Normal file
|
|
@ -0,0 +1,81 @@
|
|||
{
|
||||
"name": "coc-pairs",
|
||||
"version": "1.3.0",
|
||||
"description": "Auto pair extension for coc.nvim",
|
||||
"main": "lib/index.js",
|
||||
"publisher": "chemzqm",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/neoclide/coc-pairs.git"
|
||||
},
|
||||
"keywords": [
|
||||
"coc.nvim",
|
||||
"autopair"
|
||||
],
|
||||
"engines": {
|
||||
"coc": "^0.0.80"
|
||||
},
|
||||
"scripts": {
|
||||
"clean": "rimraf lib",
|
||||
"build": "tsc -p tsconfig.json",
|
||||
"prepare": "tsc -p tsconfig.json"
|
||||
},
|
||||
"activationEvents": [
|
||||
"*"
|
||||
],
|
||||
"contributes": {
|
||||
"configuration": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"pairs.disableLanguages": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
},
|
||||
"default": [],
|
||||
"description": "A list of languages IDs to disable this extension on"
|
||||
},
|
||||
"pairs.enableCharacters": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
},
|
||||
"default": [
|
||||
"(",
|
||||
"[",
|
||||
"{",
|
||||
"<",
|
||||
"'",
|
||||
"\"",
|
||||
"`"
|
||||
],
|
||||
"description": "Enabled character list for keymap."
|
||||
},
|
||||
"pairs.alwaysPairCharacters": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
},
|
||||
"default": [],
|
||||
"description": "Characters that should be paired without check for next character."
|
||||
},
|
||||
"pairs.enableBackspace": {
|
||||
"type": "boolean",
|
||||
"description": "Remap your backspce to delete paired characters when necessary, won't work when <bs> already mapped.",
|
||||
"default": true
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"author": "chemzqm@gmail.com",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@chemzqm/tsconfig": "^0.0.3",
|
||||
"@types/node": "^11.11.7",
|
||||
"coc.nvim": "^0.0.80",
|
||||
"rimraf": "^2.6.3",
|
||||
"tslint": "^5.14.0",
|
||||
"typescript": "^4.1.3"
|
||||
},
|
||||
"dependencies": {}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue