I'm using coc.nvim with rust-analyzer, and it works fine. My problem is having the documentation window take up half the screen (as can be seen here)
I've tried to change its size from withing my init.vim file:
" Popup menu size
set pumwidth=20 " Adjust the width of the popup menu
set pumheight=15 " Adjust the height of the popup menu
But this only changes the autocomplete options window/popup menu.
How do I change the size of the documentation popup from coc-settings.json?
Thanks