Results 49 comments of W.

As far a I can tell, no inheritance is supported. This function https://github.com/Rip-Rip/clang_complete/blob/master/plugin/clang_complete.vim#L303 seems to be responsible for parsing `.clang_complete` file, I imagine you could extend it to support inheritance,...

that doesn't seem like very clean solution. not that I have a better one

On , xaizek wrote: > I agree, a better one would be to use another file for this, but two plugin-specific files nearby is too much. I just wonder if...

On , xaizek wrote: > I don't think it's worth it. There aren't many things worse than backward incompatible changes in my opinion. And in this particular case source of...

If @xaizek insists on backward compatible, I like the solution with `.clang_partial`. In root of the project one `.clang_complete` and in subfolders `.clang_partial`s which automatically extend it (ofc `.clang_complete` can...

I would go with following: ``` !clang_complete: inherit ``` I think we can be pretty sure no compiler option ever would start with `!clang_complete:`. And this syntax would allow more...

`make bad` basically runs following script inside a podman container (using libtorrent-rasterbar-1.2.14.tar.gz source code release). The container is used to get reliable reproduction. `Makefile.docker` is provided for people who prefer...

Is there any progress on this issue? I've runned into situation when I need this to complete my script. There are workaround, but none of them is 100% working, so...

I don't think there is nothing specific to this library regarding that. You either have the option of using cjson.safe (that is documented), or just protecting the call with pcall:...

If ROM can deal with it, would changing https://github.com/hanami/model/blob/ff2dae480a5736b2dfd6c4a0f9bb6ef9e1aec94f/lib/hanami/repository.rb#L411 to ```ruby root.by_pk(*id).as(:entity).one ``` suffice ([source](http://rom-rb.org/3.0/learn/sql/queries/))? It would than be called ```ruby repository.find([name, version]) ``` or ```ruby repository.find(name, version) ``` I...