A keyboard shortcut to comment/uncomment the select text in Android Studio

后端 未结 9 1469
鱼传尺愫
鱼传尺愫 2021-01-31 13:48

How do I comment out several lines of text selected in the IDE with a control key combination?

I thought that Ctrl + Alt + C was the cor

9条回答
  •  自闭症患者
    2021-01-31 14:35

    if you are findind keyboard shortcuts for Fix doc comment like this:

    /**
     * ...
     */
    

    you can do it by useing Live Template(setting - editor - Live Templates - add)

    /**
     * $comment$
     */
    

提交回复
热议问题