summaryrefslogtreecommitdiff
path: root/.config/coc/extensions/node_modules/coc-pairs/package.json
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@simplelittledream.com>2022-07-16 18:13:16 -0400
committerJacob McDonnell <jacob@simplelittledream.com>2022-07-16 18:13:16 -0400
commit8fad9a5ecddc88d57a531e4b0084544984f23d25 (patch)
tree84954bc8219942aa56bc899330ccd0007bbe0ef0 /.config/coc/extensions/node_modules/coc-pairs/package.json
parent2887af7fcfb4d618dd13cf66ec2fbdbd84c7527c (diff)
Added profile and other missing configs
Diffstat (limited to '.config/coc/extensions/node_modules/coc-pairs/package.json')
-rw-r--r--.config/coc/extensions/node_modules/coc-pairs/package.json79
1 files changed, 79 insertions, 0 deletions
diff --git a/.config/coc/extensions/node_modules/coc-pairs/package.json b/.config/coc/extensions/node_modules/coc-pairs/package.json
new file mode 100644
index 0000000..5ca4f21
--- /dev/null
+++ b/.config/coc/extensions/node_modules/coc-pairs/package.json
@@ -0,0 +1,79 @@
+{
+ "name": "coc-pairs",
+ "version": "1.3.2",
+ "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": "^12.12.0",
+ "coc.nvim": "^0.0.81-next.8",
+ "typescript": "^4.1.3"
+ },
+ "dependencies": {}
+}