(self, shell)
| 12 | |
| 13 | class Prompts(object): |
| 14 | def __init__(self, shell): |
| 15 | self.shell = shell |
| 16 | |
| 17 | def vi_mode(self): |
| 18 | if (getattr(self.shell.pt_app, 'editing_mode', None) == EditingMode.VI |
nothing calls this directly
no outgoing calls
no test coverage detected