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

More robust way to locate the resource dir #648

Closed sunlin7 closed 2 years ago

sunlin7 commented 2 years ago

Hi, There is an error in my local when active lsp-ui:

Error running timer: (error "Can’t find library lsp-ui")

The root cause is lsp-ui will call (find-library-name "lsp-ui") but there is only lsp-ui.elc in my local (the lsp-ui.el is deleted for saving storage), then the error happened. This patch will do better than the original way. Please help review and merge this PR. Thanks

jcs090218 commented 2 years ago

Thanks!

sunlin7 commented 2 years ago

Hi Jen-Chieh, Thank you!