在 Visual Studio Code 中切换对整个 Python 函数/方法的注释

在 Visual Studio Code 中切换对整个 Python 函数/方法的注释

适用于 Javascript 的用于切换整个函数的注释的快捷方式在 Python 中不起作用。

有没有什么方法可以实现 Python 的等效功能?

答案1

以下是一种方法:

在此处输入图片描述

  1. 弃牌 ( + + [) (https://stackoverflow.com/questions/30067767/how-do-i-collapse-sections-of-code-in-visual-studio-code-for-windows

在此处输入图片描述

  1. 选择下一行 ( Shift+ )

在此处输入图片描述

  1. 切换行注释 ( + /)。

在此处输入图片描述

然后就大功告成了。(由于该函数已被注释掉,因此它甚至会自动展开。)

相关内容