Skip to content

Commit 274d786

Browse files
authored
Merge pull request #273 from doug1234/DoinDocs
Updated markdown doc for column_table_limit_kv
2 parents 1fa2ef9 + ee2a254 commit 274d786

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

docs/Style-Config.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -369,6 +369,28 @@ test = {
369369
}
370370
```
371371

372+
### column_table_limit_kv
373+
374+
type: int, default: 0
375+
376+
The column limit of each line of a k = v table.
377+
If set to 0 (the default), the value of `column_table_limit` is used.
378+
379+
```lua
380+
--column_table_limit_kv: 80
381+
--column_table_limit: 120
382+
383+
local a = {"one", "one", "one", "one", "one", "one", "one", "one", "one", "one", "one", "one", "one", "one"}
384+
385+
local some_list = {
386+
['A'] = true,
387+
['B'] = true,
388+
['C'] = true,
389+
['D'] = true,
390+
['E'] = true
391+
}
392+
```
393+
372394
### table_sep
373395

374396
type: str, default: ','

0 commit comments

Comments
 (0)