Guillaume Papin
Guillaume Papin
I would first try to see if cmake-format cannot it himself, unlike clang-format, it is already coded in python, and the project is smaller, younger, so it's easier to add...
I would recommend `git clang-format` for this kind of things, it already supports that. ``` /tmp/wxWidgets$ git clang-format --diff diff --git a/src/stc/stc.cpp b/src/stc/stc.cpp index b936dd2f4d..561379d7d3 100644 --- a/src/stc/stc.cpp +++ b/src/stc/stc.cpp...
The issue comes from shutdown down the process too harshly. If I close libclang normally, the preamble is deleted automatically. I need to install a signal handler I guess, but...
Thanks, for the record, yesterday I started working on this and I replaced kill-process by interrupt-process indeed. But I stopped at `std::getline()` not quiting on SIGINT...
There is one indeed, and that should work. I still think SIGINT should be handled but the `exit` command could do the trick alone.
The signature of the function is `(irony-install-server COMMAND)`: You can try to specify the default command line manually.
You can look at the code with `M-x find-function RET irony-install-server RET`. This is not a simple string, it depends on some other variables but it should work for a...
Ok, thanks for the link. I guess it's slightly similar to a recent on Emacs-devel regarding the installation of modules: https://lists.gnu.org/archive/html/emacs-devel/2017-02/msg00653.html Anyway, for `irony-mode` I think the best is to...
That's a great remark. It looks like I discard this information but libclang exposes it. It should be possible to achieve the desired results with company, but this require some...
One of the issue, is also to get company work with what it calls a "non-prefix" completion, quoting C-h v company-backends RET: > Non-prefix matches are also supported (candidates that...