diff options
author | Kyle Meyer <kyle@kyleam.com> | 2015-04-03 01:10:49 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2015-04-03 01:10:49 -0400 |
commit | d44a31bcbe4fa362611086fc8e3ddf8275f9e510 (patch) | |
tree | 9065921be9e60bf97eaf51333066fffce82a5c08 /snippets/python-mode/figax | |
parent | 7539be5864644cdffcae12acb3cb358ff09e8ae3 (diff) | |
download | emacs.d-d44a31bcbe4fa362611086fc8e3ddf8275f9e510.tar.gz |
Add plt.subplots snippets
Diffstat (limited to 'snippets/python-mode/figax')
-rw-r--r-- | snippets/python-mode/figax | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/snippets/python-mode/figax b/snippets/python-mode/figax new file mode 100644 index 0000000..2e149bc --- /dev/null +++ b/snippets/python-mode/figax @@ -0,0 +1,6 @@ +# -*- mode: snippet -*- +# name: figax +# key: fax +# -- +fig, ax = plt.subplots() +$0 |