(query, ignoreCase, smartCase)
| 707 | getSearchState(cm).setReversed(!forward); |
| 708 | var promptPrefix = (forward) ? '/' : '?'; |
| 709 | function handleQuery(query, ignoreCase, smartCase) { |
| 710 | updateSearchQuery(cm, query, ignoreCase, smartCase); |
| 711 | commandDispatcher.processMotion(cm, vim, { |
| 712 | type: 'motion', |
| 713 | motion: 'findNext' |
| 714 | }); |
| 715 | } |
| 716 | function onPromptClose(query) { |
| 717 | handleQuery(query, true /** ignoreCase */, true /** smartCase */); |
| 718 | } |
no test coverage detected