summaryrefslogtreecommitdiff
path: root/src/keys.nim
diff options
context:
space:
mode:
authorkitty piapiac <kcp@bsd.computer>2020-08-10 01:41:31 -0700
committerkitty piapiac <kcp@bsd.computer>2020-08-10 01:41:31 -0700
commit1ff1a0f51255958e83ee7c3f17fd0be8c628fc51 (patch)
tree7036f3685c67ba45cfc34dff5449569a8bd80047 /src/keys.nim
parent90c3fb297e2992cd311e85a236d3fef754296591 (diff)
some stuff
Diffstat (limited to 'src/keys.nim')
-rw-r--r--src/keys.nim19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/keys.nim b/src/keys.nim
deleted file mode 100644
index a56412a..0000000
--- a/src/keys.nim
+++ /dev/null
@@ -1,19 +0,0 @@
-type
- KeyFunc* = enum
- closeWindow,
- nextWindow,
- setMaster,
- spawnCustom
-
- Key* = object
- mods*: cuint
- key*: string
- keyfunc*: KeyFunc
- command*: string
-
-proc initKey* (keyfunc: KeyFunc, mods: cuint, key: string, command = ""): Key =
- return Key(
- mods: mods,
- key: key,
- command: command,
- keyfunc: keyfunc) \ No newline at end of file