Returns the number of equivalent spaces at position outPos. */
| 628 | /** Returns the number of equivalent spaces at position outPos. |
| 629 | */ |
| 630 | inline qint32 tabber(qint32 outPos, qint32 tabSize) |
| 631 | { |
| 632 | return tabSize - (outPos % tabSize); |
| 633 | } |
| 634 | |
| 635 | /** Returns a line number where the linerange [line, line+nofLines] can |
| 636 | be displayed best. If it fits into the currently visible range then |