Last active
August 29, 2015 13:56
-
-
Save johnwalker/9318921 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; 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 {"alt-," [:workspace.show] | |
"alt-x" [:show-commandbar-transient]} | |
:editor {"ctrl-." [:editor.watch.watch-selection] | |
"alt-." [:editor.watch.unwatch] | |
"ctrl-x ctrl-e" [:eval-editor-form] | |
"alt-s" [:paredit.unwrap.parent] | |
"alt-o" [:paredit.select.clear]}}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment