|
Server : LiteSpeed System : Linux barito.iixcp.rumahweb.net 5.14.0-611.49.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Apr 21 16:39:08 EDT 2026 x86_64 User : elvh3918 ( 1528) PHP Version : 8.2.31 Disable Function : mail Directory : /proc/self/root/usr/local/lib/python3.9/site-packages/prompt_toolkit/key_binding/ |
from __future__ import annotations
from .key_processor import KeyPress
__all__ = [
"EmacsState",
]
class EmacsState:
"""
Mutable class to hold Emacs specific state.
"""
def __init__(self) -> None:
# Simple macro recording. (Like Readline does.)
# (For Emacs mode.)
self.macro: list[KeyPress] | None = []
self.current_recording: list[KeyPress] | None = None
def reset(self) -> None:
self.current_recording = None
@property
def is_recording(self) -> bool:
"Tell whether we are recording a macro."
return self.current_recording is not None
def start_macro(self) -> None:
"Start recording macro."
self.current_recording = []
def end_macro(self) -> None:
"End recording macro."
self.macro = self.current_recording
self.current_recording = None