Se você quiser personalizar o comportamento padrão do Firefox, use Tabinta . De acordo com a sinopse ...
Tabinta lets you insert tab characters in multi-line text input
fields. The name itself is a shorthand for "Tab in Textarea".
The default tab key behavior in Mozilla/Firefox textareas is to go to
the next form field. This extension is for people who prefer inserting
actual tab characters into these fields.
Você pode alterar o comportamento padrão da tecla Tab para inserir uma guia, em vez da tabulação de campo usual.
Normalmente, isso seria feito pelo desenvolvedor de um site usando JavaScript ...
function keyHandler(e) {
var tabkey = 9;
if (e.keyCode == tabkey) {
this.value += "\t"; \ could use something like " " instead
if (e.preventDefault) {
e.preventDefault();
}
return false;
}
}