diff options
| author | Simeon Simeonov | 2020-05-25 10:06:11 +0200 |
|---|---|---|
| committer | Simeon Simeonov | 2020-05-25 10:06:11 +0200 |
| commit | fdbfa9f21b8fbc6f8bf35003ed0240de89376654 (patch) | |
| tree | c1834c218911223451513a806f2a0d19e2143ad0 /.emacs.d | |
| parent | 6185b8f74292b15acc427e9b978d1bb4c57038c0 (diff) | |
Add the assert and pass snippets for python-mode
Diffstat (limited to '.emacs.d')
| -rw-r--r-- | .emacs.d/snippets/python-mode/assert | 6 | ||||
| -rw-r--r-- | .emacs.d/snippets/python-mode/pass | 5 |
2 files changed, 11 insertions, 0 deletions
diff --git a/.emacs.d/snippets/python-mode/assert b/.emacs.d/snippets/python-mode/assert new file mode 100644 index 0000000..ec82efe --- /dev/null +++ b/.emacs.d/snippets/python-mode/assert | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | # -*- mode: snippet -*- | ||
| 2 | # name: assert | ||
| 3 | # key: ass | ||
| 4 | # group: testing | ||
| 5 | # -- | ||
| 6 | assert $0 \ No newline at end of file | ||
diff --git a/.emacs.d/snippets/python-mode/pass b/.emacs.d/snippets/python-mode/pass new file mode 100644 index 0000000..4734f7f --- /dev/null +++ b/.emacs.d/snippets/python-mode/pass | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | # -*- mode: snippet -*- | ||
| 2 | # name: pass | ||
| 3 | # key: ps | ||
| 4 | # -- | ||
| 5 | pass \ No newline at end of file | ||
