Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/prompt_toolkit/enums.py: 89%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1from __future__ import annotations
3from enum import Enum
6class EditingMode(Enum):
7 # The set of key bindings that is active.
8 VI = "VI"
9 EMACS = "EMACS"
12#: Name of the search buffer.
13SEARCH_BUFFER = "SEARCH_BUFFER"
15#: Name of the default buffer.
16DEFAULT_BUFFER = "DEFAULT_BUFFER"
18#: Name of the system buffer.
19SYSTEM_BUFFER = "SYSTEM_BUFFER"