Marc Schreiber

Results 61 comments of Marc Schreiber

> Not that I have an actual say, or that Alex wants to have one now, but consider [#612 (comment)](https://github.com/rust-lang/cc-rs/pull/612#discussion_r677554949). ~Not even~ Something as simple as `which` was frown upon:-)...

@HKalbasi, as you have the need to use `compile_commands.json` (see #691), do you mind to test this PR and provide some feedback?

@HKalbasi, thanks for the response. > would this design work if some project needs multiple calls to .compile? Or each call to .recorded_compile will override the previous dump? `recorded_compile` return...

@m-ou-se, @Mark-Simulacrum, you seem to be the maintainers of the project. Do you mind to have a look at this PR?

@alexeyr, what do you think about following option: ```rust let mut database = CompilationDatabase::new(); cc::Build::new().file("blobstore.c").compile_and_store("blobstore", &mut database); // … more builds database.store(/* maybe with a path */); ``` If we...

I agree to use a locale independent format. For example, you could write number in English format. ```java public class I18NTester { public static void main(String[] args) { String pattern...

I can confirm this issue. @astefanutti, have you made any progress on this issue?

I have a workaround: ```bash mkdir /tmp/shots decktape --size 1920x1080 --screenshots --screenshot-size 1920x1080 --screenshots-directory /tmp/shots http://0.0.0.0:8000 handout.pdf cd /tmp/shots for f in $(ls) do mv $f $(echo $f | sed...

I ran into this issue as well (nice plugin btw 👌) and I'm wondering if `nvim-jdtls` should handle this by mapping `jdtls`' specific `"language/progressReport"` event to `"$/progress"`. @mfussenegger, what do...

I implemented `$/progress` in jdtls (see https://github.com/eclipse/eclipse.jdt.ls/pull/2030). ![output](https://user-images.githubusercontent.com/16558417/159170174-563ba67f-9d70-4795-bfd6-a0a4b5ebe223.gif) Depending on the jdtls maintainers' responses I think this issue could be closed.