Klimi's new dotfiles with stow.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

11 satır
176 B

5 yıl önce
  1. # -*- mode: snippet -*-
  2. # name: test_file
  3. # key: tf
  4. # group : testing
  5. # --
  6. import unittest
  7. ${1:from ${2:test_file} import *}
  8. $0
  9. if __name__ == '__main__':
  10. unittest.main()