I\'m working on an implementation of Ace Editor and Ctrl+F works great for the built-in \"Find\" dialog, however I\'m trying to find a way to
This worked for me:
editor.commands.addCommand({ name: 'replace', bindKey: {win: 'Ctrl-R', mac: 'Command-Option-F'}, exec: function(editor) { ace.config.loadModule("ace/ext/searchbox", function(e) {e.Search(editor, true)}); }, readOnly: true });