This file contains hidden or 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
| #?(:cljs (def !client-jwt-token (atom nil))) | |
| (def !user (atom nil)) | |
| (e/def user (e/watch !user)) | |
| (def ^:dynamic *user* nil) | |
| (e/defn ProvideUserContext [] | |
| (e/client | |
| (let [token (.getItem js/localStorage token-local-storage-key)] | |
| (reset! !client-jwt-token token))) |
This file contains hidden or 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
| { | |
| "description": "Caps Lock to ESC on tap/Left Control on hold", | |
| "manipulators": [ | |
| { | |
| "from": { | |
| "key_code": "caps_lock", | |
| "modifiers": { | |
| "optional": [ | |
| "any" | |
| ] |
OlderNewer