VSCode Pyright 补全项文档显示不了应该如何设置?

我在 Emacs、Sublime Text 和 VSCode 都配置了 Pyright。补全正常,但补全项的文档出了点问题。前两者的补全项文档都正常显示,唯独 VSCode 只显示了类型签名:

VSCode 安装 Pyright 之后需要什么额外的设置吗?

我当前的配置:

{
    "workbench.colorTheme": "Brackets Light Pro",
    "editor.tabSize": 8,
    "editor.cursorStyle": "line",
    "editor.insertSpaces": false,
    "editor.lineNumbers": "on",
    "editor.wordSeparators": "/\\()\"':,.;<>~!@#$%^&*|+=[]{}`?-",
    "editor.wordWrap": "off",
    "editor.suggestSelection": "first",
    "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
    "breadcrumbs.enabled": false,
    "editor.minimap.enabled": false,
    "python.pythonPath": "~/.pyenv/shims/ython",
    "python.analysis.logLevel": "Trace"
}
  • macOS 10.13.6
  • Python 3.7.0
  • Pyright 1.1.275
  • Emacs 28.2/29.0
    • lsp-bridge 2022-10-21
  • Sublime Text 4126
    • LSP-Pyright 1.1.194
  • VSCode 1.72.2
    • Pyright (ms-pyright.pyright) 1.1.275

(我为啥不用 Pylance?我想保持三个编辑器一致,有问题好排查。)

花最少的,用最好的:用服务的理念去看待软件的一次尝试👉🏻EVS: [E]macs [V]SCode [S]erver - #55,来自 milanglacier 提到:

pylance比pyright的一点显著的大进步是,它可以同时显示类型签名以及文档,pyright的话,如果一个函数有类型签名,那么就不会显示文档。微软官方将之视为pylance的feature,明确表示不会给pyright提供。Show documentation when entering arguments of a function · Issue #1280 · microsoft/pyright · GitHub

果真如此?如果有人 fork 了 Pyright (ms-pyright.pyright),然后实现了 completionItem/resolve 也不能在 VSCode 上使用?