Disable search box

CTRL+f shows a search box that I don’t need.
Where can I disable it? I don’t find where.

It’s built-in. Do you think you need an option to disable it?

Yes, of course.

OK, I’ll add this to our TODO list.

Might help in short term:

window.addEventListener("keydown",function (e) {
    if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) { 
        e.preventDefault();
    }
})
2 Likes