Skip to content

Commit 24bbf57

Browse files
committed
Repackaging for ccls
1 parent 937864a commit 24bbf57

9 files changed

Lines changed: 280 additions & 290 deletions

README-dev.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
# cquery
1+
# ccls
22

3-
This is the Visual Studio Code extension for cquery. The main cquery language
4-
server which powers this extension is found at
5-
[https://github.com/cquery-project/cquery](https://github.com/cquery-project/cquery).
3+
This is the Visual Studio Code extension for ccls, which is a rewrite of cquery.
4+
This repository is just a rename of vscode-cquery.
5+
6+
The main ccls language server which powers this extension is found at
7+
[https://github.com/cquery-project/ccls](https://github.com/cquery-project/cquery).
68

79
# Building
810

@@ -17,7 +19,7 @@ npm install
1719
python build.py
1820
```
1921

20-
Now, you can use vscode to install `out/cquery.vsix`.
22+
Now, you can use vscode to install `out/ccls.vsix`.
2123

2224
# Deploying
2325

README.md

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,5 @@
1-
# cquery
1+
# vscode-ccls
22

3-
[cquery](https://github.com/cquery-project/cquery) provides extremely fast,
4-
robust, and reliable C++ integration into vscode with a ton of features, like
5-
code lens, references, code completion, semantic highlighting, and much more.
3+
This is the Visual Studio Code extension for [ccls](https://github.com/MaskRay/ccls), which is a rewrite of [cquery](https://github.com/cquery-project/cquery).
64

7-
You currently need to install and build the main cquery server (eventually this
8-
will be downloaded for you from prebuilts). See the [Getting
9-
Started](https://github.com/cquery-project/cquery/wiki/Getting-started) wiki
10-
entry.
11-
12-
This extension is still in preview. Please see additional documentation at the
13-
main cquery
14-
[wiki](https://github.com/cquery-project/cquery/wiki/Visual-Studio-Code).
15-
16-
# LICENSE
17-
18-
MIT
5+
See [Getting started](https://github.com/MaskRay/ccls/wiki/Getting-started)

build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from os.path import join
66

77
if __name__ == "__main__":
8-
OUT = 'out/cquery.vsix'
8+
OUT = 'out/ccls.vsix'
99
VSCE = 'vsce.cmd' if sys.platform == 'win32' else 'vsce'
1010
VSCE = join('node_modules', '.bin', VSCE)
1111
sys.exit(subprocess.call([VSCE, 'package', '-o', OUT]))

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)