diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-08-29 18:17:38 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-08-29 18:17:38 -0400 |
commit | f9fe9d5761a1aa451496b6dbba5af992df63f150 (patch) | |
tree | 4acb3e25581d2187f5e6f5286fd522b784ac5ec6 /snippets/python-mode | |
parent | bc3f6e767dcd2dc46fb95d4bf99b759668e0ff7d (diff) | |
download | emacs.d-f9fe9d5761a1aa451496b6dbba5af992df63f150.tar.gz |
Add snippet for h5py import
Diffstat (limited to 'snippets/python-mode')
-rw-r--r-- | snippets/python-mode/h5py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/snippets/python-mode/h5py b/snippets/python-mode/h5py new file mode 100644 index 0000000..6bea2df --- /dev/null +++ b/snippets/python-mode/h5py @@ -0,0 +1,7 @@ +# -*- mode: snippet -*- +# name: h5py +# key: h5 +# group: imports +# -- +import h5py +$0 |