Nathan Ridge

Results 1162 comments of Nathan Ridge

Could you try running clangd with `--log=verbose` as a command-line argument, and see if `Broadcasting compilation database from ` appears in the log?

@qiming-007 It sounds like maybe your `compile_commands.json` does not contain entries for all the project's source files? From the logs, `Enqueueing 49 commands for indexing` sounds like it only has...

How difficult would it be to add this? Or is there a way I could emulate it, by spinning up a second thread and running a timer on it, or...

> And it seems [linefeed](https://docs.rs/linefeed/0.5.4/linefeed/reader/struct.Reader.html#method.read_line_step) already supports what you want. Thank you for the suggestion! This works well enough for me for now.

> just an update on this problem: in `v1.14.20` (pushed just now) should add at least basic highlighting for those keywords Awesome, thanks! (Note: it does not highlight the second...

> Short of very odd formatting, it should be possible to distinguish a disambiguator (which is really a template call) and a template declaration. > > ``` > A::a_really_long_dependant_context:: >...

I believe we're talking about two unrelated things. * `--with-gcc-toolchain` was an argument to clang's old (since removed, autotools-based) build system, i.e. something you might have used (at the configure...

Moved to clangd repo as this is a request for a server-side feature in clangd that would be applicable to all clients.

@tom-anders I think a good first step here is to flesh out the specification of the feature a bit. Specifically: 1. List the completion proposals we want to add, and...

> 2. Here are the cases where I think the completion should be offered: > a) The dot follows a variable declaration whose type is convertible to `bool`, i.e. >...