Results 884 comments of Ivan Yonchovski

@konrad1977 use `M-x lsp-toggle-trace-io` and `M-x lsp-workspace-show-log`.

Use M-x lsp-workspace-show-log to get the buffer with client/server log.

I confirm that > I am guessing that the eldoc being pulled from elpa (1.11) is not being used. Seems correct.

Eglot is doing that, most likely this will fix the issue. ```` ;; ElDoc is preloaded in Emacs, so `require'-ing won't guarantee we are ;; using the latest version from...

I reverted #3275 until we find a working solution.

We could use `defcustom-lsp` + `lsp-section`. In general, doing PRs for newly added properties for better visibility is also something that we want to happen on regular basis.

Emacs 26 does not have flex match so we use `substring` match.

A potential workaround for emacs 26 deficiency is to use helm-flex like this, but this is not tested. ``` (setq lsp-completion-styles '(helm-flex)) ``` CC @dgutov who might know a different...

With the following line: > VeA ``` [Trace - 05:00:35 PM] Sending request 'textDocument/completion - (609)'. Params: { "textDocument": { "uri": "file:///home/kyoncho/Sources/CPP/testCPP/chars.cpp" }, "position": { "line": 5, "character": 5 },...

> @yyoncho, that's issue #1652 > And yes, in this case, we need `flex` match to be enabled to have the candidates displayed. Since `isIncomplete` is `null`, thus the filter...