Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 169 Bytes

File metadata and controls

12 lines (8 loc) · 169 Bytes

快捷的switchCase代码模板

##abbreviation : switchc

##template text:

switch($condition$){
  case $value$: $todo$ break;
  default:break;
}