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

9 statements  

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"