Skip to content

Instantly share code, notes, and snippets.

Created December 11, 2013 23:58
Show Gist options
  • Save anonymous/7920842 to your computer and use it in GitHub Desktop.
Save anonymous/7920842 to your computer and use it in GitHub Desktop.
;; User keymap
;; -----------------------------
;; Keymaps are stored as a set of diffs that are merged together together
;; to create the final set of keys. You can modify these diffs to either add
;; or subtract bindings.
;;
;; Like behaviors, keys are bound by tag. When objects with those tags are active
;; the key bindings are live. Keys can be bound to any number of Light Table commands,
;; allowing you the flexibility to execute multiple operations together. To see a list
;; of all the commands you can execute, start typing a word related to the thing you
;; want to do in between the square brackets (e.g. type "editor").
{:+ {:app {"ctrl-shift-alt-]" [:tabs.move-next-tabset]
"ctrl-shift-alt-[" [:tabs.move-prev-tabset]
"pmeta-]" [:tabset.next]
"pmeta-[" [:tabset.prev]
"pmeta-t" [:tabset.new]
"pmeta-shift-t" [:tabset.close]
"pmeta-shift-w" [:workspace.show]}
:editor {"alt-w" [:editor.watch.watch-selection]
"alt-shift-w" [:editor.watch.unwatch]}}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment