enums.py 322 B

1234567891011121314151617
  1. from enum import Enum
  2. class EditingMode(Enum):
  3. # The set of key bindings that is active.
  4. VI = "VI"
  5. EMACS = "EMACS"
  6. #: Name of the search buffer.
  7. SEARCH_BUFFER = "SEARCH_BUFFER"
  8. #: Name of the default buffer.
  9. DEFAULT_BUFFER = "DEFAULT_BUFFER"
  10. #: Name of the system buffer.
  11. SYSTEM_BUFFER = "SYSTEM_BUFFER"