pappasam / coc-jedi

coc.nvim wrapper for https://github.com/pappasam/jedi-language-server

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to prevent the coc-jedi from showing the function docstring automatically?

harvey-wei opened this issue · comments

I don't believe coc-jedi is responsible for this. Look into coc.nvim's signature.enable option in your coc-settings.json and set this value to false. My configuration (which accomplishes what you're requesting):

{
  "signature.hideOnTextChange": true,
  "signature.enable": false
}

I don't believe coc-jedi is not responsible for this. Look into coc.nvim's signature.enable option in your coc-settings.json and set this value to false. My configuration (which accomplishes what you're requesting):

{
  "signature.hideOnTextChange": true,
  "signature.enable": false
}

Hi! Thanks a lot! Your configuration in coc-settings.json works as expected.