some deletions
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-clangd / package.json
diff --git a/.config/coc/extensions/node_modules/coc-clangd/package.json b/.config/coc/extensions/node_modules/coc-clangd/package.json
deleted file mode 100644 (file)
index 0930cf8..0000000
+++ /dev/null
@@ -1,171 +0,0 @@
-{
-  "name": "coc-clangd",
-  "version": "0.6.0",
-  "description": "clangd extension for coc.nvim",
-  "author": "Heyward Fann <fannheyward@gmail.com>",
-  "license": "Apache-2.0 WITH LLVM-exception",
-  "main": "lib/index.js",
-  "keywords": [
-    "coc.nvim"
-  ],
-  "engines": {
-    "coc": "^0.0.70"
-  },
-  "repository": {
-    "type": "git",
-    "url": "https://github.com/clangd/coc-clangd.git"
-  },
-  "scripts": {
-    "clean": "rimraf lib",
-    "watch": "webpack --watch",
-    "build": "webpack",
-    "lint": "eslint src --ext ts",
-    "prepare": "npm-run-all clean build"
-  },
-  "devDependencies": {
-    "@clangd/install": "^0.1.3",
-    "@types/node": "^14.14.2",
-    "@types/which": "^1.3.2",
-    "@typescript-eslint/eslint-plugin": "^4.5.0",
-    "@typescript-eslint/parser": "^4.5.0",
-    "coc.nvim": "^0.0.79",
-    "eslint": "^7.11.0",
-    "eslint-config-prettier": "^6.14.0",
-    "eslint-plugin-prettier": "^3.1.4",
-    "husky": "^4.3.0",
-    "npm-run-all": "^4.1.5",
-    "prettier": "^2.1.2",
-    "rimraf": "^3.0.1",
-    "ts-loader": "^8.0.6",
-    "typescript": "^4.0.3",
-    "vscode-languageserver-protocol": "^3.15.3",
-    "webpack": "^5.1.3",
-    "webpack-cli": "^4.1.0"
-  },
-  "husky": {
-    "hooks": {
-      "pre-push": "yarn lint"
-    }
-  },
-  "activationEvents": [
-    "onLanguage:c",
-    "onLanguage:cpp",
-    "onLanguage:cuda",
-    "onLanguage:objc",
-    "onLanguage:objcpp",
-    "onLanguage:arduino",
-    "onLanguage:objective-c",
-    "onLanguage:objective-cpp",
-    "workspaceContains:**/compile_commands.json",
-    "workspaceContains:**/compile_flags.txt"
-  ],
-  "rootPatterns": [
-    {
-      "patterns": [
-        "compile_commands.json",
-        "compile_flags.txt"
-      ]
-    }
-  ],
-  "contributes": {
-    "configuration": {
-      "type": "object",
-      "title": "coc-clangd configuration",
-      "properties": {
-        "clangd.enabled": {
-          "type": "boolean",
-          "default": true,
-          "description": "Enable coc-clangd extension"
-        },
-        "clangd.disableDiagnostics": {
-          "type": "boolean",
-          "default": false,
-          "description": "Disable diagnostics from clangd"
-        },
-        "clangd.disableSnippetCompletion": {
-          "type": "boolean",
-          "default": false,
-          "description": "Disable completion snippet from clangd"
-        },
-        "clangd.compilationDatabasePath": {
-          "type": "string",
-          "default": "",
-          "description": "Specifies the directory containing the compilation database"
-        },
-        "clangd.path": {
-          "type": "string",
-          "default": "clangd",
-          "description": "The path to clangd executable, e.g.: /usr/bin/clangd"
-        },
-        "clangd.arguments": {
-          "type": "array",
-          "default": [],
-          "items": {
-            "type": "string"
-          },
-          "description": "Arguments for clangd server"
-        },
-        "clangd.trace": {
-          "type": "string",
-          "description": "Names a file that clangd should log a performance trace to, in chrome trace-viewer JSON format."
-        },
-        "clangd.fallbackFlags": {
-          "type": "array",
-          "items": {
-            "type": "string"
-          },
-          "default": [],
-          "description": "Extra clang flags used to parse files when no compilation database is found."
-        },
-        "clangd.semanticHighlighting": {
-          "type": "boolean",
-          "default": false,
-          "description": "Enable semantic highlighting in clangd, requires jackguo380/vim-lsp-cxx-highlight to work"
-        },
-        "clangd.showDBChangedNotification": {
-          "type": "boolean",
-          "default": true,
-          "description": "Show notifications while DB files changed"
-        },
-        "clangd.serverCompletionRanking": {
-          "type": "boolean",
-          "default": true,
-          "description": "Always rank completion items on the server as you type. This produces more accurate results at the cost of higher latency than client-side filtering."
-        },
-        "clangd.checkUpdates": {
-          "type": "boolean",
-          "default": false,
-          "description": "Check for clangd language server updates on startup."
-        },
-        "suggest.detailMaxLength": {
-          "type": "number",
-          "description": "Max length of detail that should be shown in popup menu.",
-          "default": 50
-        },
-        "diagnostic.format": {
-          "type": "string",
-          "description": "Define the diagnostic format. Available parts: source, code, severity, message",
-          "default": "%message\n[%source:%code]"
-        }
-      }
-    },
-    "commands": [
-      {
-        "command": "clangd.switchSourceHeader",
-        "title": "Switch between source/header"
-      },
-      {
-        "command": "clangd.symbolInfo",
-        "title": "Resolve symbol info under the cursor"
-      },
-      {
-        "command": "clangd.install",
-        "title": "Install latest clangd language server binary release"
-      },
-      {
-        "command": "clangd.update",
-        "title": "Check for updates to clangd language server"
-      }
-    ]
-  }
-}