Skip to content
Snippets Groups Projects
Commit 5c6025a3 authored by Alasdair Smith's avatar Alasdair Smith Committed by Marijn Haverbeke
Browse files

[search addon] Capture keys for search-related commands in persistent dialog

parent 8eb15883
No related branches found
No related tags found
No related merge requests found
......@@ -62,7 +62,21 @@
value: deflt,
selectValueOnOpen: true,
closeOnEnter: false,
onClose: function() { clearSearch(cm); }
onClose: function() { clearSearch(cm); },
onKeyDown: function(ev, query) {
var cmd = CodeMirror.keyMap['default'][CodeMirror.keyName(ev)];
if (cmd) {
var nextSearchCmds = ['findNext', 'findPrev'];
var searchCmds = ['find', 'findPersistent'];
if (nextSearchCmds.indexOf(cmd) !== -1) {
startSearch(cm, getSearchState(cm), query);
CodeMirror.commands[cmd](cm);
CodeMirror.e_stop(ev);
} else if (searchCmds.indexOf(cmd) !== -1) {
f(query, ev);
}
}
}
});
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment