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

1from __future__ import annotations 

2 

3from enum import Enum 

4 

5 

6class EditingMode(Enum): 

7 # The set of key bindings that is active. 

8 VI = "VI" 

9 EMACS = "EMACS" 

10 

11 

12#: Name of the search buffer. 

13SEARCH_BUFFER = "SEARCH_BUFFER" 

14 

15#: Name of the default buffer. 

16DEFAULT_BUFFER = "DEFAULT_BUFFER" 

17 

18#: Name of the system buffer. 

19SYSTEM_BUFFER = "SYSTEM_BUFFER"