Skip to content

Commit

Permalink
Repackaging for ccls
Browse files Browse the repository at this point in the history
  • Loading branch information
MaskRay committed Jul 14, 2018
1 parent 937864a commit 24bbf57
Show file tree
Hide file tree
Showing 9 changed files with 280 additions and 290 deletions.
12 changes: 7 additions & 5 deletions README-dev.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# cquery
# ccls

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

The main ccls language server which powers this extension is found at
[https://github.com/cquery-project/ccls](https://github.com/cquery-project/cquery).

# Building

Expand All @@ -17,7 +19,7 @@ npm install
python build.py
```

Now, you can use vscode to install `out/cquery.vsix`.
Now, you can use vscode to install `out/ccls.vsix`.

# Deploying

Expand Down
19 changes: 3 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,5 @@
# cquery
# vscode-ccls

[cquery](https://github.com/cquery-project/cquery) provides extremely fast,
robust, and reliable C++ integration into vscode with a ton of features, like
code lens, references, code completion, semantic highlighting, and much more.
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).

You currently need to install and build the main cquery server (eventually this
will be downloaded for you from prebuilts). See the [Getting
Started](https://github.com/cquery-project/cquery/wiki/Getting-started) wiki
entry.

This extension is still in preview. Please see additional documentation at the
main cquery
[wiki](https://github.com/cquery-project/cquery/wiki/Visual-Studio-Code).

# LICENSE

MIT
See [Getting started](https://github.com/MaskRay/ccls/wiki/Getting-started)
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from os.path import join

if __name__ == "__main__":
OUT = 'out/cquery.vsix'
OUT = 'out/ccls.vsix'
VSCE = 'vsce.cmd' if sys.platform == 'win32' else 'vsce'
VSCE = join('node_modules', '.bin', VSCE)
sys.exit(subprocess.call([VSCE, 'package', '-o', OUT]))
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 24bbf57

Please sign in to comment.