...
This commit is contained in:
parent
25616aaa7b
commit
f88a4fe986
@ -3772,10 +3772,10 @@ UTF-8 text). You can use the show_key kitten :code:`kitty +kitten show_key` to
|
|||||||
get the key escape codes you want to emulate. The first argument to
|
get the key escape codes you want to emulate. The first argument to
|
||||||
:code:`send_text` is the keyboard modes in which to activate the shortcut. The
|
:code:`send_text` is the keyboard modes in which to activate the shortcut. The
|
||||||
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() # }}}
|
||||||
|
|||||||
2
kitty/options/types.py
generated
2
kitty/options/types.py
generated
@ -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
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user