This commit is contained in:
Kovid Goyal 2022-04-18 11:13:16 +05:30
parent 25616aaa7b
commit f88a4fe986
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 5 additions and 5 deletions

View File

@ -3774,8 +3774,8 @@ get the key escape codes you want to emulate. The first argument to
possible values are :code:`normal` or :code:`application` or :code:`kitty` or a possible values are :code:`normal` or :code:`application` or :code:`kitty` or a
comma separated combination of them. The special keyword :code:`all` means all comma separated combination of them. The special keyword :code:`all` means all
modes. The modes :code:`normal` and :code:`application` refer to the DECCKM modes. The modes :code:`normal` and :code:`application` refer to the DECCKM
cursor key mode forterminals, and :code:`kitty` refers to the special kitty cursor key mode for terminals, and :code:`kitty` refers to the kitty extended
extended keyboard protocol. keyboard protocol.
Some more examples:: Some more examples::
@ -3783,7 +3783,7 @@ Some more examples::
map ctrl+alt+a send_text normal Word\\x1b[H map ctrl+alt+a send_text normal Word\\x1b[H
map ctrl+alt+a send_text application Word\\x1bOH map ctrl+alt+a send_text application Word\\x1bOH
# Run a command at a shell prompt (like typing the command and pressing Enter) # Run a command at a shell prompt (like typing the command and pressing Enter)
map ctrl+alt+a send_text normal,application some command with arguments\r map ctrl+alt+a send_text normal,application some command with arguments\\r
''' '''
) )
egr() # }}} egr() # }}}

View File

@ -485,7 +485,7 @@ class Options:
click_interval: float = -1.0 click_interval: float = -1.0
clipboard_control: typing.Tuple[str, ...] = ('write-clipboard', 'write-primary', 'read-clipboard-ask', 'read-primary-ask') clipboard_control: typing.Tuple[str, ...] = ('write-clipboard', 'write-primary', 'read-clipboard-ask', 'read-primary-ask')
clipboard_max_size: float = 64.0 clipboard_max_size: float = 64.0
clone_source_strategies: typing.FrozenSet[str] = frozenset({'venv', 'env_var', 'conda', 'path'}) clone_source_strategies: typing.FrozenSet[str] = frozenset({'conda', 'env_var', 'venv', 'path'})
close_on_child_death: bool = False close_on_child_death: bool = False
command_on_bell: typing.List[str] = ['none'] command_on_bell: typing.List[str] = ['none']
confirm_os_window_close: int = -1 confirm_os_window_close: int = -1