ptrv
ptrv
I removed the --keep_logfiles flag from the server command and the cleanup of logfiles worked just fine when exiting Emacs. @r4nt Can you provide some reproduction steps for the issue...
@Valloric Thanks for the hint. I haven't use `Shutdown()` or `YcmCorePreload()` function yet. Will check them with emacs shutdown.
Ok, the problem is that we use `start-process` to run the `ycmd` process asynchronously but when exiting Emacs the `ycmd` child process gets killed. We added `ycmd-close` to `kill-emacs-hook` but...
@abingham I tried the example from the bug report bug report and added `(setq kill-emacs-hook '((lambda () (sit-for 4))))` and I terminated emacs and Emacs waited the 4 seconds before...
I'll look into it
I think we should run a hook on any exception, passing the result to the hook function and then the user can decide what to do. The exception contains the...
@unhammer I pushed a commit which adds a hook to run on an exception. Could you try out the PR #307?
@unhammer Regarding the first point, I updated the PR and now we pass also buffer and point to the hook. I am not sure what to do about point 2....
Regarding 1: You only get filetype completion after semantic triggers like ".", "->" or "::". In your example it's totally correct that you only get identifier completion. However, you can...
> > you can enable force semantic completion with C-c Y s in order to always trigger filetype completion > > That works fine, thanks. Kinda surprising to a new...