diff options
Diffstat (limited to 'snippets/python-mode/numpymethod')
-rw-r--r-- | snippets/python-mode/numpymethod | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/snippets/python-mode/numpymethod b/snippets/python-mode/numpymethod deleted file mode 100644 index 9f448a9..0000000 --- a/snippets/python-mode/numpymethod +++ /dev/null @@ -1,30 +0,0 @@ -# -*- coding: utf-8 -*- -# name: numpy method -# key: defmn -# -- -def ${1:name}(self, $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)) - } - """
\ No newline at end of file |