Skip to content
Snippets Groups Projects
Commit 2986ccaf authored by Friedemann Kleint's avatar Friedemann Kleint
Browse files

PLain Text Editor: Remove list indentation


As it causes dashed lists to be formatted as
- i1
  - i2
Just do paragraph formatting.

Task-number: QTCREATORBUG-538
Initial-patch-by: default avatarThorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com>
parent 73a447ff
No related branches found
No related tags found
No related merge requests found
...@@ -110,11 +110,10 @@ void PlainTextEditor::indentBlock(QTextDocument *doc, QTextBlock block, QChar ty ...@@ -110,11 +110,10 @@ void PlainTextEditor::indentBlock(QTextDocument *doc, QTextBlock block, QChar ty
return; return;
// Just use previous line. // Just use previous line.
// Skip non-alphanumerical characters when determining the indentation // Skip blank characters when determining the indentation
// to enable writing bulleted lists whose items span several lines.
int i = 0; int i = 0;
while (i < previousText.size()) { while (i < previousText.size()) {
if (previousText.at(i).isLetterOrNumber()) { if (!previousText.at(i).isSpace()) {
const TextEditor::TabSettings &ts = tabSettings(); const TextEditor::TabSettings &ts = tabSettings();
ts.indentLine(block, ts.columnAt(previousText, i)); ts.indentLine(block, ts.columnAt(previousText, i));
break; break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment