[clang-tools-extra] r353295 - [clangd] Enable clangd on Objective-C in VSCode

Ilya Biryukov via cfe-commits cfe-commits at lists.llvm.org
Wed Feb 6 05:47:49 PST 2019


Author: ibiryukov
Date: Wed Feb  6 05:47:49 2019
New Revision: 353295

URL: http://llvm.org/viewvc/llvm-project?rev=353295&view=rev
Log:
[clangd] Enable clangd on Objective-C in VSCode

Summary: Thanks to Andreas Ostermeyer for raising this on the mailing list.

Reviewers: hokein

Reviewed By: hokein

Subscribers: ioeric, MaskRay, jkorous, arphaman, kadircet, cfe-commits

Tags: #clang

Differential Revision: https://reviews.llvm.org/D57813

Modified:
    clang-tools-extra/trunk/clangd/clients/clangd-vscode/package.json

Modified: clang-tools-extra/trunk/clangd/clients/clangd-vscode/package.json
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clangd/clients/clangd-vscode/package.json?rev=353295&r1=353294&r2=353295&view=diff
==============================================================================
--- clang-tools-extra/trunk/clangd/clients/clangd-vscode/package.json (original)
+++ clang-tools-extra/trunk/clangd/clients/clangd-vscode/package.json Wed Feb  6 05:47:49 2019
@@ -21,8 +21,10 @@
         "LLVM"
     ],
     "activationEvents": [
+        "onLanguage:c",
         "onLanguage:cpp",
-        "onLanguage:c"
+        "onLanguage:objective-c",
+        "onLanguage:objective-cpp"
     ],
     "main": "./out/src/extension",
     "scripts": {




More information about the cfe-commits mailing list