Control-P in vi edit mode on readline is history next, unlike default prompt toolkit. If completer is open this still select previous completion.
(event)
| 156 | |
| 157 | |
| 158 | def previous_history_or_previous_completion(event): |
| 159 | """ |
| 160 | Control-P in vi edit mode on readline is history next, unlike default prompt toolkit. |
| 161 | |
| 162 | If completer is open this still select previous completion. |
| 163 | """ |
| 164 | event.current_buffer.auto_up() |
| 165 | |
| 166 | |
| 167 | def next_history_or_next_completion(event): |
nothing calls this directly
no outgoing calls
no test coverage detected