Alt-S is my hotkey for the browser's websearch edit box.
In case anyone else is bothered by it, here's a Greasemonkey-compatible fix:
// ==UserScript==
// @include http://*.eevblog.com/forum/*
// ==/UserScript==
if (oEditorHandle_message) {
oEditorHandle_message.registerShortcut('s', 'alt', 's-hk');
}