Control-N in vi edit mode on readline is history previous, unlike default prompt toolkit. If completer is open this still select next completion.
(event)
| 165 | |
| 166 | |
| 167 | def next_history_or_next_completion(event): |
| 168 | """ |
| 169 | Control-N in vi edit mode on readline is history previous, unlike default prompt toolkit. |
| 170 | |
| 171 | If completer is open this still select next completion. |
| 172 | """ |
| 173 | event.current_buffer.auto_down() |
| 174 | |
| 175 | |
| 176 | def dismiss_completion(event): |
nothing calls this directly
no outgoing calls
no test coverage detected