summaryrefslogtreecommitdiff
path: root/keys.lua
diff options
context:
space:
mode:
Diffstat (limited to 'keys.lua')
-rw-r--r--keys.lua12
1 files changed, 0 insertions, 12 deletions
diff --git a/keys.lua b/keys.lua
deleted file mode 100644
index 1bb18e1..0000000
--- a/keys.lua
+++ /dev/null
@@ -1,12 +0,0 @@
-local K = {}
-
---- Build actions table from simple mapping { [key] = fn, ... }
-function K.actions(map)
- local t = {}
- for k, fn in pairs(map) do
- t[k] = fn
- end
- return t
-end
-
-return K