Add shortcuts for jumping to prev/next shell prompt

This commit is contained in:
Kovid Goyal 2021-07-13 14:45:13 +05:30
parent bd5f100f13
commit 51fa25e03d
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
9 changed files with 54 additions and 11 deletions

View File

@ -14,12 +14,14 @@ Scrolling
======================== ======================= ======================== =======================
Action Shortcut Action Shortcut
======================== ======================= ======================== =======================
Scroll line up :sc:`scroll_line_up` (also :kbd:`⌥+⌘+⇞` and :kbd:`⌘+↑` on macOS) Line up :sc:`scroll_line_up` (also :kbd:`⌥+⌘+⇞` and :kbd:`⌘+↑` on macOS)
Scroll line down :sc:`scroll_line_down` (also :kbd:`⌥+⌘+⇟` and :kbd:`⌘+↓` on macOS) Line down :sc:`scroll_line_down` (also :kbd:`⌥+⌘+⇟` and :kbd:`⌘+↓` on macOS)
Scroll page up :sc:`scroll_page_up` (also :kbd:`⌘+⇞` on macOS) Page up :sc:`scroll_page_up` (also :kbd:`⌘+⇞` on macOS)
Scroll page down :sc:`scroll_page_down` (also :kbd:`⌘+⇟` on macOS) Page down :sc:`scroll_page_down` (also :kbd:`⌘+⇟` on macOS)
Scroll to top :sc:`scroll_home` (also :kbd:`⌘+↖` on macOS) Top :sc:`scroll_home` (also :kbd:`⌘+↖` on macOS)
Scroll to bottom :sc:`scroll_end` (also :kbd:`⌘+↘` on macOS) Bottom :sc:`scroll_end` (also :kbd:`⌘+↘` on macOS)
Previous shell prompt :sc:`scroll_to_previous_prompt` (see :ref:`shell_integration`)
Next shell prompt :sc:`scroll_to_next_prompt` (see :ref:`shell_integration`)
======================== ======================= ======================== =======================
Tabs Tabs

View File

@ -1862,7 +1862,8 @@ To update |kitty|, :doc:`follow the instructions <binary>`.
using standard keyboards) via `IBus using standard keyboards) via `IBus
<https://github.com/ibus/ibus/wiki/ReadMe>`_ (:iss:`469`) <https://github.com/ibus/ibus/wiki/ReadMe>`_ (:iss:`469`)
- Implement completion for the kitty command in bash and zsh - Implement completion for the kitty command in bash and zsh. See
:ref:`shell_integration`.
- Render the text under the cursor in a fixed color, configurable via - Render the text under the cursor in a fixed color, configurable via
the option :opt:`cursor_text_color` (:iss:`126`) the option :opt:`cursor_text_color` (:iss:`126`)

View File

@ -51,6 +51,9 @@ type it each time::
alias ssh="kitty +kitten ssh" alias ssh="kitty +kitten ssh"
Remember to also setup :ref:`shell_integration` for completion and other
niceties.
If for some reason that does not work (typically because the server is using a If for some reason that does not work (typically because the server is using a
non POSIX compliant shell as ``/bin/sh``), you can try using it with ``python`` non POSIX compliant shell as ``/bin/sh``), you can try using it with ``python``
instead:: instead::

View File

@ -47,6 +47,7 @@ def remove_markup(text: str) -> str:
'sessions': f'{website_url("overview")}#startup-sessions', 'sessions': f'{website_url("overview")}#startup-sessions',
'functional': f'{website_url("keyboard-protocol")}#functional-key-definitions', 'functional': f'{website_url("keyboard-protocol")}#functional-key-definitions',
'action-select_tab': f'{website_url("actions")}#select-tab', 'action-select_tab': f'{website_url("actions")}#select-tab',
'shell_integration': website_url("shell-integration"),
} }
def sub(m: Match) -> str: def sub(m: Match) -> str:

View File

@ -1016,6 +1016,9 @@ class Screen:
def scroll_to_next_mark(self, mark: int = 0, backwards: bool = True) -> bool: def scroll_to_next_mark(self, mark: int = 0, backwards: bool = True) -> bool:
pass pass
def scroll_to_prompt(self, num_of_prompts: int = -1) -> bool:
pass
def reverse_scroll(self, amt: int, fill_from_scrollback: bool = False) -> bool: def reverse_scroll(self, amt: int, fill_from_scrollback: bool = False) -> bool:
pass pass

View File

@ -2892,6 +2892,20 @@ map('Scroll to bottom',
only="macos", only="macos",
) )
map('Scroll to previous shell prompt',
'scroll_to_previous_prompt kitty_mod+x scroll_to_prompt -1',
long_text='''
Requires :ref:`shell_integration` to work.
'''
)
map('Scroll to next shell prompt',
'scroll_to_next_prompt kitty_mod+d scroll_to_prompt 1',
long_text='''
Requires :ref:`shell_integration` to work.
'''
)
map('Browse scrollback buffer in less', map('Browse scrollback buffer in less',
'show_scrollback kitty_mod+h show_scrollback', 'show_scrollback kitty_mod+h show_scrollback',
long_text=''' long_text='''

View File

@ -712,6 +712,10 @@ defaults.map = [
KeyDefinition(False, KeyAction('scroll_home'), 1024, False, 57356, ()), KeyDefinition(False, KeyAction('scroll_home'), 1024, False, 57356, ()),
# scroll_end # scroll_end
KeyDefinition(False, KeyAction('scroll_end'), 1024, False, 57357, ()), KeyDefinition(False, KeyAction('scroll_end'), 1024, False, 57357, ()),
# scroll_to_previous_prompt
KeyDefinition(False, KeyAction('scroll_to_prompt', (-1,)), 1024, False, 120, ()),
# scroll_to_next_prompt
KeyDefinition(False, KeyAction('scroll_to_prompt', (1,)), 1024, False, 100, ()),
# show_scrollback # show_scrollback
KeyDefinition(False, KeyAction('show_scrollback'), 1024, False, 104, ()), KeyDefinition(False, KeyAction('show_scrollback'), 1024, False, 104, ()),
# new_window # new_window

View File

@ -249,13 +249,14 @@ def remote_control(func: str, rest: str) -> FuncArgsType:
return func, r return func, r
@func_with_args('nth_window') @func_with_args('nth_window', 'scroll_to_prompt')
def nth_window(func: str, rest: str) -> FuncArgsType: def single_integer_arg(func: str, rest: str) -> FuncArgsType:
try: try:
num = int(rest) num = int(rest)
except Exception: except Exception:
log_error('Invalid nth_window number: {}'.format(rest)) if rest:
num = 1 log_error(f'Invalid number for {func}: {rest}')
num = -1 if func == 'scroll_to_prompt' else 1
return func, [num] return func, [num]

View File

@ -1032,6 +1032,20 @@ class Window:
if self.screen.is_main_linebuf(): if self.screen.is_main_linebuf():
self.screen.scroll(SCROLL_FULL, False) self.screen.scroll(SCROLL_FULL, False)
@ac('sc', '''
Scroll to the previous/next shell command prompt
Allows easy jumping from one command to the next. Requires working
:ref:`shell_integration`. Takes a single, optional, number as argument which is
the number of prompts to jump, negative values jump up and positive values jump down.
For example::
map ctrl+p scroll_to_prompt -1 # jump to previous
map ctrl+n scroll_to_prompt 1 # jump to next
''')
def scroll_to_prompt(self, num_of_prompts: int = -1) -> None:
if self.screen.is_main_linebuf():
self.screen.scroll_to_prompt(num_of_prompts)
@ac('mk', 'Toggle the current marker on/off') @ac('mk', 'Toggle the current marker on/off')
def toggle_marker(self, ftype: str, spec: Union[str, Tuple[Tuple[int, str], ...]], flags: int) -> None: def toggle_marker(self, ftype: str, spec: Union[str, Tuple[Tuple[int, str], ...]], flags: int) -> None:
from .marks import marker_from_spec from .marks import marker_from_spec