diff --git a/docs/index.rst b/docs/index.rst index 866ffb498..e2aa4c28b 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -126,8 +126,8 @@ Action Shortcut ======================== ======================= New tab :sc:`new_tab` (also :kbd:`⌘+t` on macOS) Close tab :sc:`close_tab` (also :kbd:`⌘+w` on macOS) -Next tab :sc:`next_tab` (also :kbd:`^+⇥` on macOS) -Previous tab :sc:`previous_tab` (also :kbd:`⇧+^+⇥` on macOS) +Next tab :sc:`next_tab` (also :kbd:`^+⇥` and :kbd:`⇧+⌘+]` on macOS) +Previous tab :sc:`previous_tab` (also :kbd:`⇧+^+⇥` and :kbd:`⇧+⌘+[` on macOS) Next layout :sc:`next_layout` Move tab forward :sc:`move_tab_forward` Move tab backward :sc:`move_tab_backward` diff --git a/kitty/config_data.py b/kitty/config_data.py index 34c225525..0d6638116 100644 --- a/kitty/config_data.py +++ b/kitty/config_data.py @@ -1032,9 +1032,11 @@ g('shortcuts.tab') # {{{ k('next_tab', 'kitty_mod+right', 'next_tab', _('Next tab')) if is_macos: k('next_tab', 'ctrl+tab', 'next_tab', _('Next tab'), add_to_docs=False) + k('next_tab', 'shift+cmd+]', 'next_tab', _('Next tab'), add_to_docs=False) k('previous_tab', 'kitty_mod+left', 'previous_tab', _('Previous tab')) if is_macos: k('previous_tab', 'shift+ctrl+tab', 'previous_tab', _('Previous tab'), add_to_docs=False) + k('previous_tab', 'shift+cmd+[', 'previous_tab', _('Previous tab'), add_to_docs=False) k('new_tab', 'kitty_mod+t', 'new_tab', _('New tab')) if is_macos: k('new_tab', 'cmd+t', 'new_tab', _('New tab'), add_to_docs=False)