Skip to content

Commit c035649

Browse files
Add .ccls config file
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: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@267653 268f45cc-cd09-0410-ab3c-d52691b4dbfc
1 parent 050ca00 commit c035649

File tree

3 files changed

+24
-1
lines changed

3 files changed

+24
-1
lines changed

.ccls

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
%compile_commands.json
2+
%h -x
3+
%h c++-header
4+
%h --include=config.h
5+
%cpp --include=config.h

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ xcuserdata
3333
tags
3434
*~
3535
.*.sw[a-p]
36-
.ccls
3736
.clangd
3837
compile_commands.json
3938

ChangeLog

+19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
2020-09-27 Philippe Normand <[email protected]>
2+
3+
Add .ccls config file
4+
https://bugs.webkit.org/show_bug.cgi?id=216877
5+
6+
Reviewed by Darin Adler.
7+
8+
ccls is a stand-alone server implementing the Language Server Protocol for C, C++, and
9+
Objective-C languages. It can be used with any editor which provides an LSP client
10+
implementation. It originates from cquery.
11+
12+
https://github.com/MaskRay/ccls/wiki
13+
14+
It's basically used to provide semantic highlighting and code navigation. Many IDEs support
15+
LSP nowadays.
16+
17+
* .ccls: Added.
18+
* .gitignore:
19+
120
2020-09-25 Fujii Hironori <[email protected]>
221

322
make_names.pl no longer needs C preprocessor

0 commit comments

Comments
 (0)