在 Visual Studio 代码中是否有像这样 /** */ 注释的快捷方式?
Is there a shorcut to comment like this /** */ in Visual Studio code?
我知道有shift + alt + A
但是我想知道是否有这样的评论的快捷方式:
> /** */
为了给函数一个描述
像这样:
> /**
> * Start the camera application and return information about
> * captured imagefiles.
> * @param options
> * @returns {Promise<MediaFile[]>}
> */
就像@Mark 所说的那样,它会在您键入 /** 时自动生成
我太习惯使用 shift + alt + A 以至于我没有意识到
我知道有shift + alt + A
但是我想知道是否有这样的评论的快捷方式:
> /** */
为了给函数一个描述
像这样:
> /**
> * Start the camera application and return information about
> * captured imagefiles.
> * @param options
> * @returns {Promise<MediaFile[]>}
> */
就像@Mark 所说的那样,它会在您键入 /** 时自动生成 我太习惯使用 shift + alt + A 以至于我没有意识到