dobrze, nie jest to sposób, aby edytor pojedynczej linii przy użyciu bogatych możliwości CodeMirror. Najpierw musisz dodać w pełni funkcjonalny obiekt CodeMirror (użyj obszaru tekstowego).
Załóżmy, że masz var cm = CodeMirror(...)
. (Użyj value: ""
). Następnie zrobić
cm.setSize(200, cm.defaultTextHeight() + 2 * 4);
// 200 is the preferable width of text field in pixels,
// 4 is default CM padding (which depends on the theme you're using)
// now disallow adding newlines in the following simple way
cm.on("beforeChange", function(instance, change) {
var newtext = change.text.join("").replace(/\n/g, ""); // remove ALL \n !
change.update(change.from, change.to, [newtext]);
return true;
});
// and then hide ugly horizontal scrollbar
cm.on("change", function(instance, change) {
$(".CodeMirror-hscrollbar").css('display', 'none');
// (!) this code is using jQuery and the selector is quite imperfect if
// you're using more than one CodeMirror on your page. you're free to
// change it appealing to your page structure.
});
// the following line fixes a bug I've encountered in CodeMirror 3.1
$(".CodeMirror-scroll").css('overflow', 'hidden');
// jQuery again! be careful with selector or move this to .css file
Działa to dobrze dla mnie.
Czy CodeMirror nie jest narzędziem do edycji kodu w przeglądarce? Nie widzę, jak twoje pole wejściowe wymaga edytora kodu? Co masz na myśli przez "kolorowy"? – nimrod
@nimod: Podświetlanie składni Przypuszczam. –
Można użyć obszaru tekstowego i ustawić jego wysokość na jeden wiersz. Wydaje mi się, że jest to podejście "ok". Z pewnością nie jest źle, a zbudowanie czegoś na własną rękę jest prawdopodobnie trudniejsze. Nadal musisz utworzyć parser językowy, aby prawe tokeny były poprawnie podświetlone. –