forked from WebKit/WebKit
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
https://bugs.webkit.org/show_bug.cgi?id=216877 Patch by Philippe Normand <[email protected]> on 2020-09-27 Reviewed by Darin Adler. ccls is a stand-alone server implementing the Language Server Protocol for C, C++, and Objective-C languages. It can be used with any editor which provides an LSP client implementation. It originates from cquery. https://github.com/MaskRay/ccls/wiki It's basically used to provide semantic highlighting and code navigation. Many IDEs support LSP nowadays. * .ccls: Added. * .gitignore: Canonical link: https://commits.webkit.org/229812@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@267653 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
1 parent
6649c3d
commit f5e1753
Showing
3 changed files
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
%compile_commands.json | ||
%h -x | ||
%h c++-header | ||
%h --include=config.h | ||
%cpp --include=config.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 +33,6 @@ xcuserdata | |
tags | ||
*~ | ||
.*.sw[a-p] | ||
.ccls | ||
.clangd | ||
compile_commands.json | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,22 @@ | ||
2020-09-27 Philippe Normand <[email protected]> | ||
|
||
Add .ccls config file | ||
https://bugs.webkit.org/show_bug.cgi?id=216877 | ||
|
||
Reviewed by Darin Adler. | ||
|
||
ccls is a stand-alone server implementing the Language Server Protocol for C, C++, and | ||
Objective-C languages. It can be used with any editor which provides an LSP client | ||
implementation. It originates from cquery. | ||
|
||
https://github.com/MaskRay/ccls/wiki | ||
|
||
It's basically used to provide semantic highlighting and code navigation. Many IDEs support | ||
LSP nowadays. | ||
|
||
* .ccls: Added. | ||
* .gitignore: | ||
|
||
2020-09-25 Fujii Hironori <[email protected]> | ||
|
||
make_names.pl no longer needs C preprocessor | ||
|