about summary refs log tree commit diff
path: root/users/grfn/emacs.d/snippets/python-mode
diff options
context:
space:
mode:
Diffstat (limited to 'users/grfn/emacs.d/snippets/python-mode')
-rw-r--r--users/grfn/emacs.d/snippets/python-mode/add_column5
-rw-r--r--users/grfn/emacs.d/snippets/python-mode/decorate15
-rw-r--r--users/grfn/emacs.d/snippets/python-mode/dunder7
-rw-r--r--users/grfn/emacs.d/snippets/python-mode/name7
-rw-r--r--users/grfn/emacs.d/snippets/python-mode/op.get_bind.execute7
-rw-r--r--users/grfn/emacs.d/snippets/python-mode/pdb7
6 files changed, 0 insertions, 48 deletions
diff --git a/users/grfn/emacs.d/snippets/python-mode/add_column b/users/grfn/emacs.d/snippets/python-mode/add_column
deleted file mode 100644
index 47e83850d5..0000000000
--- a/users/grfn/emacs.d/snippets/python-mode/add_column
+++ /dev/null
@@ -1,5 +0,0 @@
-# -*- mode: snippet -*-
-# name: add_column
-# key: op.add_column
-# --
-op.add_column('${1:table}', sa.Column('${2:name}', sa.${3:String()}))$0
diff --git a/users/grfn/emacs.d/snippets/python-mode/decorate b/users/grfn/emacs.d/snippets/python-mode/decorate
deleted file mode 100644
index 9448b45c96..0000000000
--- a/users/grfn/emacs.d/snippets/python-mode/decorate
+++ /dev/null
@@ -1,15 +0,0 @@
-# -*- mode: snippet -*-
-# name: decorate
-# uuid:
-# key: decorate
-# condition: t
-# --
-def wrap(inner):
-    @wraps(inner)
-    def wrapped(*args, **kwargs):
-        ret = inner(*args, **kwargs)
-        return ret
-
-    return wrapped
-
-return wrap
\ No newline at end of file
diff --git a/users/grfn/emacs.d/snippets/python-mode/dunder b/users/grfn/emacs.d/snippets/python-mode/dunder
deleted file mode 100644
index c49ec40a15..0000000000
--- a/users/grfn/emacs.d/snippets/python-mode/dunder
+++ /dev/null
@@ -1,7 +0,0 @@
-# -*- mode: snippet -*-
-# name: dunder
-# uuid:
-# key: du
-# condition: t
-# --
-__$1__$0
\ No newline at end of file
diff --git a/users/grfn/emacs.d/snippets/python-mode/name b/users/grfn/emacs.d/snippets/python-mode/name
deleted file mode 100644
index eca6d60b48..0000000000
--- a/users/grfn/emacs.d/snippets/python-mode/name
+++ /dev/null
@@ -1,7 +0,0 @@
-# -*- mode: snippet -*-
-# name: name
-# uuid:
-# key: name
-# condition: t
-# --
-__name__
\ No newline at end of file
diff --git a/users/grfn/emacs.d/snippets/python-mode/op.get_bind.execute b/users/grfn/emacs.d/snippets/python-mode/op.get_bind.execute
deleted file mode 100644
index aba801c6ba..0000000000
--- a/users/grfn/emacs.d/snippets/python-mode/op.get_bind.execute
+++ /dev/null
@@ -1,7 +0,0 @@
-# key: exec
-# name: op.get_bind.execute
-# --
-op.get_bind().execute(
-    """
-    `(progn (sqlup-mode) "")`$1
-    """)
diff --git a/users/grfn/emacs.d/snippets/python-mode/pdb b/users/grfn/emacs.d/snippets/python-mode/pdb
deleted file mode 100644
index 6b5c0bbc0a..0000000000
--- a/users/grfn/emacs.d/snippets/python-mode/pdb
+++ /dev/null
@@ -1,7 +0,0 @@
-# -*- mode: snippet -*-
-# name: pdb
-# uuid:
-# key: pdb
-# condition: t
-# --
-import pdb; pdb.set_trace()
\ No newline at end of file