diff --git a/layers/+tools/eaf/README.org b/layers/+tools/eaf/README.org index c63c937f4..25c5ae912 100644 --- a/layers/+tools/eaf/README.org +++ b/layers/+tools/eaf/README.org @@ -57,11 +57,11 @@ implemented in this layer can be found [[https://github.com/manateelazycat/emacs ** Global *** All EAF-applications -| Key binding | Description | -|-------------+-----------------------------------------------------------------------| -| ~SPC a a f~ | EAF open file ([[https://github.com/manateelazycat/emacs-application-framework#launch-eaf-applications][see EAF doc for supported file types]]) | -| ~SPC t k m~ | Show available key commands in which-key (read [[https://develop.spacemacs.org/doc/DOCUMENTATION.html#which-key][here]] for more details) | -| ~SPC m d~ | toggle dark-mode (in pdf-viewer just press ~d~) | +| Key binding | Description | +|-------------+-------------------------------------------------------------------------| +| ~SPC a a f~ | EAF open file ([[https://github.com/manateelazycat/emacs-application-framework#launch-eaf-applications][see EAF doc for supported file types]]) | +| ~SPC t k m~ | Show available key commands in which-key (read [[https://develop.spacemacs.org/doc/DOCUMENTATION.html#which-key][here]] for more details) | +| ~SPC m d~ | toggle dark-mode (in browser press ~M-d~, in pdf-viewer just press ~d~) | *** Browser diff --git a/layers/+tools/eaf/packages.el b/layers/+tools/eaf/packages.el index c94fb832e..0d9b316c5 100644 --- a/layers/+tools/eaf/packages.el +++ b/layers/+tools/eaf/packages.el @@ -76,7 +76,7 @@ ("M-D" . "select_text") ("M-s" . "open_link") ("M-S" . "open_link_new_buffer") - ("M-d" . "open_link_background_buffer") + ("M-B" . "open_link_background_buffer") ("C-/" . "undo_action") ("M-_" . "redo_action") ("M-w" . "copy_text") @@ -93,6 +93,7 @@ ("M->" . "scroll_to_bottom") ("M-p" . "duplicate_page") ("M-t" . "new_blank_page") + ("M-d" . "toggle_dark_mode") ("<" . "insert_or_select_left_tab") (">" . "insert_or_select_right_tab") ("j" . "insert_or_scroll_up") @@ -130,8 +131,8 @@ ("2" . "insert_or_save_as_single_file") ("v" . "insert_or_view_source") ("e" . "insert_or_edit_url") - ("M-C" . "copy_code") - ("C-M-f" . "copy_link") + ("C-M-c" . "copy_code") + ("C-M-l" . "copy_link") ("C-a" . "select_all_or_input_text") ("M-u" . "clear_focus") ("C-j" . "open_downloads_setting")