Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/prompt_toolkit/enums.py: 100%
8 statements
« prev ^ index » next coverage.py v7.4.4, created at 2024-04-20 06:09 +0000
« prev ^ index » next coverage.py v7.4.4, created at 2024-04-20 06:09 +0000
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"