Klimi's new dotfiles with stow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
132 B

4 years ago
  1. # -*- mode: snippet -*-
  2. # name: class … { … }
  3. # key: class
  4. # --
  5. /++
  6. + $1
  7. +/
  8. class ${1:ClassName}
  9. {
  10. this($2)
  11. {
  12. $0
  13. }
  14. }