VSCode全局删除代码注释
用VSCode中的替换命令,选择正则表达式进行替换,替换内容为空即可删除对应的注释 vs code 替换快捷命令:ctrl + H
Idea 替换快捷键:ctrl + R
删除单行注释 //
shell
//(?!.*\..*\.).*\n
删除多行注释(块注释块注释 /**/ )
shell
/\*(.|\r\n|\n)*?\*/
同时删除单行和多行注释
shell
/\*(.|\r\n|\n)*?\*/|\/\/.*
删除多余的空白行
shell
^\s*(?=\r?$)\n
删除注释#
shell
#.*
删除注释"""或'''
shell
"""[\s\S]*?"""|'''[\s\S]*?'''
同时删除注释#、"""、'''
shell
#.*|"""[\s\S]*?"""|'''[\s\S]*?'''
渐变背景色
- 紫青蓝
css
background: rgb(130,49,142);
background: linear-gradient(90deg, rgba(130,49,142,1) 0%, rgba(85,162,117,1) 50%, rgba(50,52,177,1) 100%);
Vue
选项式组件初始化代码
直接复制运行npm run serve会编译不成功,需要将script部分注释掉
html
<template>
<div class="common-layout">
</div>
</template>
<script>
// 导入内容
import {} from "";
export default {
name: '',
data() {
return {}
},
mounted() {
// 在组件被挂载到DOM后调用的方法
this.mountedMethod()
},
methods: {
methodName() {
}
}
}
</script>
<style>
/* 设置标签对应的样式 */
</style>