Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

trigger workspace/didChangeConfiguration on compilation database modification #76

Open
wants to merge 23 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
cbfb4f9
dataflow
Yanpas Jan 23, 2019
6add9c6
show explorer
Yanpas Jan 23, 2019
c4ce56b
merge with master
Yanpas Jan 29, 2019
c469393
0.1.22
MaskRay Feb 3, 2019
4184e4c
Rename cacheDirectory to cache.directory
MaskRay Feb 22, 2019
7492826
0.1.23
MaskRay Feb 22, 2019
875c0c1
Add option ccls.codeLens.enabled
Riatre Mar 2, 2019
c190607
Add option ccls.trace.websocketEndpointUrl to log LSP traffic to WebS…
Riatre Mar 2, 2019
9239650
Add .github/ISSUE_TEMPLATE
MaskRay Mar 3, 2019
04c9bb8
Cleanup config mapping logic in getClientConfig
Riatre Mar 3, 2019
9c9f95c
Add documentation of index.maxInitializerLines; set default value to 15
Riatre Mar 3, 2019
75970ad
Use the default argument of child_process.spawn
MaskRay Apr 8, 2019
1206c92
fixed/improved member hierarchy info
theorlangur Aug 28, 2019
414ba76
Add option ccls.callHierarchy.qualified to show detailed names in the…
Deokkoo Jun 27, 2019
f073de4
npm update
MaskRay Oct 14, 2019
fb54bc6
Redesign semantic highlight configurations (#75)
MaskRay Oct 14, 2019
d7a0fa5
Bump to 0.1.28 and refactor packaging
MaskRay Oct 15, 2019
eb2b291
trigger workspace/didChangeConfiguration on compilation database modi…
BenjaminNavarro Oct 15, 2019
b8b9400
coding sytle
BenjaminNavarro Oct 16, 2019
1126269
Use compilationDatabaseDirectory if specified
BenjaminNavarro Oct 28, 2019
e00cdc3
coding style
BenjaminNavarro Oct 29, 2019
8b9c58c
feat: resolve possible symlinks before db modification watching
BenjaminNavarro May 9, 2020
2490a94
feat: integrate dataflow PR from official project
BenjaminNavarro May 9, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .github/ISSUE_TEMPLATE
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
Here are some things you should try before filing a bug report:

+ This is for client side issues. For server side issues, report at [ccls](https://github.com/MaskRay/ccls) or [vscode-ccls](https://github.com/MaskRay/vscode-ccls).
+ Check https://github.com/MaskRay/ccls/wiki/Visual-Studio-Code
+ Check https://github.com/MaskRay/ccls/wiki/Debugging
+ Check [the FAQ](https://github.com/MaskRay/ccls/wiki/FAQ) to see if your issue is mentioned.

If none of those help, remove this section and fill out the four sections in the template below.

---

### Observed behavior

Describe what happened. Any aids you can include (that you think could be relevant) are a tremendous help.

* `compile_commands.json` or `.ccls` ([wiki/Project-Setup](https://github.com/MaskRay/ccls/wiki/Project-Setup))
* Reduce to A minimal set of `.c` `.cc` `.h` `.hh` files that can still demonstrate the issue.
* Consider a screencast gif.

### Expected behavior

Describe what you expected to happen.

### Steps to reproduce

1. Select these example steps,
2. Delete them,
3. And replace them with precise steps to reproduce your issue.

### System information

* ccls version (`git describe --tags`):
* OS:
* Editor:
* vscode-ccls version (`git describe --tags`):
7 changes: 4 additions & 3 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.vscode/**
src/**
**/.*
**/*.map
.gitignore
build.cmd
tsconfig.json
**/*.ts
tsconfig.json
tslint.json
34 changes: 0 additions & 34 deletions README-dev.md

This file was deleted.

9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
# vscode-ccls

This is the Visual Studio Code extension for [ccls](https://github.com/MaskRay/ccls).

![](https://ptpb.pw/ScXs.jpg)
This is the Visual Studio Code extension for [ccls](https://github.com/MaskRay/ccls),
a C/C++/ObjC language server supporting cross references, hierarchies, completion and semantic highlighting.

See:

* [Getting started](https://github.com/MaskRay/ccls/wiki/Getting-started)
* [Visual Studio Code](https://github.com/MaskRay/ccls/wiki/Visual-Studio-Code)
* [ccls/wiki/Home](https://github.com/MaskRay/ccls/wiki/Home)
* [ccls/wiki/Visual Studio Code](https://github.com/MaskRay/ccls/wiki/Visual-Studio-Code)
11 changes: 0 additions & 11 deletions build.py

This file was deleted.

Loading