(query)
| 1386 | }); |
| 1387 | } |
| 1388 | function onPromptClose(query) { |
| 1389 | cm.scrollTo(originalScrollPos.left, originalScrollPos.top); |
| 1390 | handleQuery(query, true /** ignoreCase */, true /** smartCase */); |
| 1391 | var macroModeState = vimGlobalState.macroModeState; |
| 1392 | if (macroModeState.isRecording) { |
| 1393 | logSearchQuery(macroModeState, query); |
| 1394 | } |
| 1395 | } |
| 1396 | function onPromptKeyUp(e, query, close) { |
| 1397 | var keyName = CodeMirror.keyName(e), up, offset; |
| 1398 | if (keyName == 'Up' || keyName == 'Down') { |
nothing calls this directly
no test coverage detected