geza-herman
geza-herman
For me, setting `window-resize-pixelwise` to `nil` (that's the default value) fixed the issue.
I created this advice. It's likely that it has some flaws, like how `begin` and `end` exactly handled, or maybe some compatibility issue, like the original global command updates some...
I tried @jakejx 's branch (I applied the "Initial inlay hint support for gopls" commit to current lsp-mode), and it works with clangd. The only modification I had to make...
How predicates would be passed in the STL, if the STL was designed today? Isn't it possible that we'd use forwarding references to pass them? I think that predicates are...
> > How predicates would be passed in the STL, if the STL was designed today? Isn't it possible that we'd use forwarding references to pass them? > > STL...
> broken understanding of rvalueness that Ranges uses I wouldn't call this understanding broken. C++ gives us a feature, called forwarding reference. It has some rules how it binds to...
What should happen, if the language server doesn't provide `textEdit`? Is lsp-mode written in way that if only `insertText` exists, then lsp-mode has the behavior I described in the first...
I managed to achieve what I want, I modified `lsp-completion-at-point` to return the end of the symbol instead of `(point)` (I mean the second element of the list), and I...
Thanks, I can confirm that this is the problem. Using `'commited` for the last parameter, magit works correctly, so I suppose this patch is correct. A related question: if the...