是否有使用Atom emmet(不添加额外的软件包)的正确快捷方式,仅注释选择,而不是完整的行?似乎 Ctrl Shift / 注释掉完整的行。 我在Emmet文档中搜索过Emmet cheatcheets而没有找到答案。
情境-1:
This is my code-line. /***Only this should be commented.***/ this area should not be commented.
情境-2:
This is my code-line. //***Only this should be commented. Not complete line.***
情境-3:
/*
Code-line-1
Code-line-2
*/
评论方案-3:我知道你可以选择你的区域并使用 Ctrl Shift / 。
你会在每一行的开头用//
评论该部分,但是你可以使用带有javascript文件的Atom emmet获得评论标记吗?