Problem:
ctrl/cmd+f should open a searchbox. Either react-ace or brace looks in the wrong place for the script, looking in app/ext-searchbox.js but the file is actually in the brace node module at node_modules/brace/ext/searchbox.js
I'm not sure if this is a brace problem or react-ace issue (or somehow my own due to build settings).
the workaround is to get the searchbox code from the brace module and put the file at app/ext-searchbox.js.
I should note I'm using this on electron.
Sorry, found the answer in the faq
import 'brace/ext/searchbox';
Most helpful comment
Sorry, found the answer in the faq
import 'brace/ext/searchbox';