Skip to content

Commit

Permalink
Bind show-panel to keychord C-S-x by default
Browse files Browse the repository at this point in the history
  • Loading branch information
kimo-k committed Jun 20, 2023
1 parent e3e87de commit e8fb7c2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ All notable changes to this project will be documented in this file. This change

- Option to ignore keyboard input. See #386.
- Option to re-bind the open/close panel key. See #386.
- Open/close panel key now binds to `Ctrl-Shift-X` (from `Ctrl-h`). See #386.

## 1.6.0 (2023-05-04)

Expand Down
4 changes: 2 additions & 2 deletions src/day8/re_frame_10x/events.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@
(rf/inject-cofx ::local-storage/load {:key "show-event-history" :or true})
(rf/inject-cofx ::local-storage/load {:key "open-new-inspectors?" :or true})
(rf/inject-cofx ::local-storage/load {:key "handle-keys?" :or true})
(rf/inject-cofx ::local-storage/load {:key "key-bindings" :or {:show-panel {:key "h"
(rf/inject-cofx ::local-storage/load {:key "key-bindings" :or {:show-panel {:key "X"
:altKey false
:ctrlKey true
:metaKey false
:shiftKey false}}})
:shiftKey true}}})
rf/unwrap]
(fn [{:keys [panel-width-ratio show-panel selected-tab filter-items app-db-json-ml-expansions
external-window? external-window-dimensions show-epoch-traces? using-trace?
Expand Down

0 comments on commit e8fb7c2

Please sign in to comment.