I disabled the Enter key on the Tags field, as users tend to click enter when the autosuggestion shows only one word.
However, enter sends the question form to the server :)
For others, who have the same problem or users, use javascript / jquery:
$("#tags").keypress(function(e) {
if (e.which == 13) { return false; }
});