(query)
| 10567 | }); |
| 10568 | } |
| 10569 | function onPromptClose(query) { |
| 10570 | cm.scrollTo(originalScrollPos.left, originalScrollPos.top); |
| 10571 | handleQuery(query, true /** ignoreCase */, true /** smartCase */); |
| 10572 | var macroModeState = vimGlobalState.macroModeState; |
| 10573 | if (macroModeState.isRecording) { |
| 10574 | logSearchQuery(macroModeState, query); |
| 10575 | } |
| 10576 | } |
| 10577 | function onPromptKeyUp(e, query, close) { |
| 10578 | var keyName = CodeMirror.keyName(e), up; |
| 10579 | if (keyName == 'Up' || keyName == 'Down') { |
nothing calls this directly
no test coverage detected