in assets/js/mod/search-key.js [14:20]
$(window).keypress(function(e) {
if ($('input:focus, textarea:focus').length === 0 &&
e.which === 47) { // The slash is 47.
self.search_form.find('input').focus().select();
return false;
}
});