rice

personal dot files and scripts for linux and macOS
Log | Files | Refs | README | LICENSE

switch (101B)


      1 # -*- mode: snippet -*-
      2 # name: for switch
      3 # key: switch
      4 # --
      5 switch $1 {
      6 case $2:
      7      $0
      8 default:
      9 }