emacs-ccls
emacs-ccls copied to clipboard
Emacs client for ccls, a C/C++ language server
Now it looks like this: https://i.imgur.com/bDgHDSN.png and this I think is consistent with some GUI packages like Qt: https://i.stack.imgur.com/Ua7ef.jpg
here is my config snippet ``` (use-package ccls :init (setq ccls-initialization-options '(:index (:onChange t))) ... ``` still, ccls will not parse current file until a save action.
Note: I use lsp-mode, ccls and flycheck. Let say I have somewhere a C function `int my_func(char *str, int num)`. If I want to use it, I will start to...