gpt4 book ai didi

sublimetext2 - Sublime text 2 如何只删除评论

转载 作者:行者123 更新时间:2023-12-03 23:59:15 25 4
gpt4 key购买 nike

在我的 sass 代码中,我有内联注释,我希望在 sublime 文本中删除它们。是否可以单独永久删除所有评论内容?

@function emCalc($values) {
$emValues: '';
$max: length($values); //Get the total number of parameters passed
@for $i from 1 through $max {
$value: (nth($values, $i)); //Take the individual parameter
$value: $value / ($value * 0 + 1); //Doing this gets you one unit (1px)
$value: $value / $em-base * 1em; //Divide the px value by emBase and return the value as em
$emValues: #{$emValues + $value}; //Append to array
@if $i < $max {
$emValues: #{$emValues + " "}; //Adding space between parameters (except last), if there are multiple parameters
}
}
@return $emValues; //Call emCalc like so emCalc(10, 20, 30, 40) it should return margin: 0.625em 1.25em 1.875em 2.5em
}

最佳答案

如果没有其他可能,您可以选择每个// (先选择 //,然后按 CtrlD,如果我没记错的话还有评论)。

然后按 ShiftEnd 选择带有 // 的行尾和德尔! :)

(可能有一个插件,但这是我认为最简单的方法。这表明您所有的 // 都指的是评论的开头,当然)

关于sublimetext2 - Sublime text 2 如何只删除评论,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17364130/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com