about summary refs log tree commit diff
path: root/users/glittershark/emacs.d/snippets/python-mode
diff options
context:
space:
mode:
authorGriffin Smith <grfn@gws.fyi>2021-04-11T21·53-0400
committerglittershark <grfn@gws.fyi>2021-04-12T14·45+0000
commit6266c5d32f9ff651fcfc3a4cc0c68e89da56ca65 (patch)
tree5be3967585787c4456e17cb29423770217fdcede /users/glittershark/emacs.d/snippets/python-mode
parent968effb5dc1a4617a0dceaffc70e986abe300c6e (diff)
refactor(users/glittershark): Rename to grfn r/2485
Rename my //users directory and all places that refer to glittershark to
grfn, including nix references and documentation.

This may require some extra attention inside of gerrit's database after
it lands to allow me to actually push things.

Change-Id: I4728b7ec2c60024392c1c1fa6e0d4a59b3e266fa
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2933
Tested-by: BuildkiteCI
Reviewed-by: tazjin <mail@tazj.in>
Reviewed-by: lukegb <lukegb@tvl.fyi>
Reviewed-by: glittershark <grfn@gws.fyi>
Diffstat (limited to 'users/glittershark/emacs.d/snippets/python-mode')
-rw-r--r--users/glittershark/emacs.d/snippets/python-mode/add_column5
-rw-r--r--users/glittershark/emacs.d/snippets/python-mode/decorate15
-rw-r--r--users/glittershark/emacs.d/snippets/python-mode/dunder7
-rw-r--r--users/glittershark/emacs.d/snippets/python-mode/name7
-rw-r--r--users/glittershark/emacs.d/snippets/python-mode/op.get_bind.execute7
-rw-r--r--users/glittershark/emacs.d/snippets/python-mode/pdb7
6 files changed, 0 insertions, 48 deletions
diff --git a/users/glittershark/emacs.d/snippets/python-mode/add_column b/users/glittershark/emacs.d/snippets/python-mode/add_column
deleted file mode 100644
index 47e83850d5..0000000000
--- a/users/glittershark/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/glittershark/emacs.d/snippets/python-mode/decorate b/users/glittershark/emacs.d/snippets/python-mode/decorate
deleted file mode 100644
index 9448b45c96..0000000000
--- a/users/glittershark/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/glittershark/emacs.d/snippets/python-mode/dunder b/users/glittershark/emacs.d/snippets/python-mode/dunder
deleted file mode 100644
index c49ec40a15..0000000000
--- a/users/glittershark/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/glittershark/emacs.d/snippets/python-mode/name b/users/glittershark/emacs.d/snippets/python-mode/name
deleted file mode 100644
index eca6d60b48..0000000000
--- a/users/glittershark/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/glittershark/emacs.d/snippets/python-mode/op.get_bind.execute b/users/glittershark/emacs.d/snippets/python-mode/op.get_bind.execute
deleted file mode 100644
index aba801c6ba..0000000000
--- a/users/glittershark/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/glittershark/emacs.d/snippets/python-mode/pdb b/users/glittershark/emacs.d/snippets/python-mode/pdb
deleted file mode 100644
index 6b5c0bbc0a..0000000000
--- a/users/glittershark/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