emacs-lsp / lsp-ui

UI integrations for lsp-mode
https://emacs-lsp.github.io/lsp-ui
GNU General Public License v3.0
1.03k stars 141 forks source link

lsp-ui-doc overlaps with completion-at-point popup and lsp-ui-doc-position not working #748

Open AK-CHP1 opened 1 year ago

AK-CHP1 commented 1 year ago

My lsp-ui-doc frame overlaps with the completions (provided by company mode). Here is how it lookes like:

scr

And to fix this, I decided to change the position of the doc to the top via following:

(use-package lsp-ui
  :commands lsp-ui-mode
  :custom
  (lsp-ui-doc-position 'top))

But the position didn't changed I am using emacs 26.3 on ubuntu 20.04 machine. I recently installed lsp-mode on emacs. I am a beginner.

Please help me in fixing this.