All of my important config files
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.

13 lines
286 B

  1. snippet debug
  2. abbr deb
  3. options head
  4. println!("{:?}", ${1});
  5. snippet impldisplay
  6. abbr disp
  7. options head
  8. impl fmt::Display for ${1} {
  9. fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
  10. write!(f, "${2}", ${3})
  11. }
  12. }