summaryrefslogtreecommitdiff
path: root/snippets/python-mode/numpyclass
blob: ce619ccd724af86c3b95a5557e8f3fdad71c228f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# -*- coding: utf-8 -*-
# name: numpy class
# key: classn
# --
class ${1:ClassName}(${2:object}):
    """$3
    $0${4:$
    (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))
    }

    """

    def __init__(self, $4):