diff options
author | Araq <rumpf_a@web.de> | 2019-07-12 10:23:21 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2019-07-12 10:23:21 +0200 |
commit | 5bf3734984c7a488b38e0b5fe48a298af40d7d03 (patch) | |
tree | 99312cda21ed4a4015a82ad8c885f2e08f8a6980 /compiler | |
parent | eaf4b42ff99b4e7bd77232dc53035e93682aaa73 (diff) | |
download | Nim-5bf3734984c7a488b38e0b5fe48a298af40d7d03.tar.gz |
nimpretty: implement a --maxLineLen command line option
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/layouter.nim | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/compiler/layouter.nim b/compiler/layouter.nim index 1b4c5eec5..bff7d8a1b 100644 --- a/compiler/layouter.nim +++ b/compiler/layouter.nim @@ -15,7 +15,6 @@ from os import changeFileExt from sequtils import delete const - MaxLineLen = 80 MinLineLen = 15 type @@ -50,6 +49,7 @@ type indentStack: seq[int] fixedUntil: int # marks where we must not go in the content altSplitPos: array[SplitKind, int] # alternative split positions + maxLineLen*: int proc openEmitter*(em: var Emitter, cache: IdentCache; config: ConfigRef, fileIdx: FileIndex) = @@ -77,7 +77,7 @@ proc computeMax(em: Emitter; pos: int): int = var foundTab = false while p < em.tokens.len and em.kinds[p] != ltEndSection: if em.kinds[p] in {ltCrucialNewline, ltSplittingNewline}: - if foundTab and lineLen <= MaxLineLen: + if foundTab and lineLen <= em.maxLineLen: result = max(result, lhs + extraSpace) inc p break @@ -124,7 +124,7 @@ proc optionalIsGood(em: var Emitter; pos, currentLen: int): bool = em.findNewline(p, lineLen) if p == pos+1: # optionalNewline followed by another newline result = false - elif em.kinds[p-1] == ltComment and currentLen+lineLen < MaxLineLen+MinLineLen: + elif em.kinds[p-1] == ltComment and currentLen+lineLen < em.maxLineLen+MinLineLen: result = false elif p+1 < em.tokens.len and em.kinds[p+1] == ltSpaces and em.kinds[p-1] == ltOptionalNewline: @@ -183,7 +183,7 @@ proc closeEmitter*(em: var Emitter) = else: # pick the shorter indentation token: var spaces = maxLhs - lineLen - if spaces < em.tokens[i].len or computeRhs(em, i+1)+maxLhs <= MaxLineLen+MinLineLen: + if spaces < em.tokens[i].len or computeRhs(em, i+1)+maxLhs <= em.maxLineLen+MinLineLen: if spaces <= 0 and content[^1] notin {' ', '\L'}: spaces = 1 for j in 1..spaces: content.add ' ' inc lineLen, spaces @@ -196,7 +196,7 @@ proc closeEmitter*(em: var Emitter) = lineBegin = i+1 of ltOptionalNewline: let totalLineLen = lineLen + lenOfNextTokens(em, i) - if totalLineLen > MaxLineLen and optionalIsGood(em, i, lineLen): + if totalLineLen > em.maxLineLen and optionalIsGood(em, i, lineLen): if i-1 >= 0 and em.kinds[i-1] == ltSpaces: let spaces = em.tokens[i-1].len content.setLen(content.len - spaces) @@ -298,7 +298,7 @@ const oprSet = {tkOpr, tkDiv, tkMod, tkShl, tkShr, tkIn, tkNotin, tkIs, tkIsnot, tkNot, tkOf, tkAs, tkDotDot, tkAnd, tkOr, tkXor} -template goodCol(col): bool = col >= MaxLineLen div 2 +template goodCol(col): bool = col >= em.maxLineLen div 2 template moreIndent(em): int = if em.doIndentMore > 0: em.indWidth*2 else: em.indWidth |