diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-03-24 22:34:08 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-03-24 22:36:14 -0400 |
commit | d3499573ef817ce737f924f4641dade14e6233fd (patch) | |
tree | 17ff349949f1665b2722b784c0e59f59b46fe126 /snippets/python-mode/numpyfunc | |
parent | 306b196734c23c9554ff0f541d564705cc8cf2db (diff) | |
download | emacs.d-d3499573ef817ce737f924f4641dade14e6233fd.tar.gz |
Break down NumPy yasnippets
Make individual snippets for the parameters and returns headings.
Diffstat (limited to 'snippets/python-mode/numpyfunc')
-rw-r--r-- | snippets/python-mode/numpyfunc | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/snippets/python-mode/numpyfunc b/snippets/python-mode/numpyfunc deleted file mode 100644 index 9ed7666..0000000 --- a/snippets/python-mode/numpyfunc +++ /dev/null @@ -1,34 +0,0 @@ -# -*- coding: utf-8 -*- -# name: numpy definition -# key: defn -# -- -def ${1:name}($2): - """$3 - $0${2:$ - (let* ((indent - (concat "\n" (make-string (current-column) 32))) - (args - (mapconcat - '(lambda (x) - (if (not (string= (nth 0 x) "")) - (concat " " (nth 0 x) " : "))) - (mapcar - '(lambda (x) - (mapcar - '(lambda (x) - (replace-regexp-in-string "[[:blank:]]*$" "" - (replace-regexp-in-string "^[[:blank:]]*" "" x))) - x)) - (mapcar '(lambda (x) (split-string x "=")) - (split-string text ","))) - indent))) - (mapconcat - 'identity - (list "" "Parameters" "----------" args) - indent)) - } - - Returns - ------- - - """
\ No newline at end of file |