(self)
| 266 | cmpltn_action: CompletionAction | None = field(init=False) |
| 267 | |
| 268 | def __post_init__(self) -> None: |
| 269 | super().__post_init__() |
| 270 | self.cmpltn_reset() |
| 271 | for c in (complete, self_insert): |
| 272 | self.commands[c.__name__] = c |
| 273 | self.commands[c.__name__.replace('_', '-')] = c |
| 274 | |
| 275 | def collect_keymap(self) -> tuple[tuple[KeySpec, CommandName], ...]: |
| 276 | return super().collect_keymap() + ( |
nothing calls this directly
no test coverage detected