Visual studio code 如何在Jupyter笔记本的VS代码中显示docstring或函数签名?

Visual studio code 如何在Jupyter笔记本的VS代码中显示docstring或函数签名?,visual-studio-code,jupyter-notebook,vscode-settings,docstring,Visual Studio Code,Jupyter Notebook,Vscode Settings,Docstring,我目前已经安装了VS代码,作为用于Python数据科学开发的Jupyterlab的替代编辑器。现在我想知道如何显示函数的docstring或签名 我没有找到任何有关快捷方式或所需设置更改的信息。您可以在设置中更改这些设置。json: // Controls if quick suggestions should show up while typing "editor.quickSuggestions": { "other": tr

我目前已经安装了VS代码,作为用于Python数据科学开发的Jupyterlab的替代编辑器。现在我想知道如何显示函数的docstring或签名


我没有找到任何有关快捷方式或所需设置更改的信息。

您可以在设置中更改这些设置。json:

// Controls if quick suggestions should show up while typing
    "editor.quickSuggestions": {
        "other": true,
        "comments": false,
        "strings": false
    },

如何将更改应用于设置?我应该重新启动笔记本吗?服务器?