summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorTimothy Crosley <timothy.crosley@gmail.com>2020-09-01 03:04:21 -0700
committerTimothy Crosley <timothy.crosley@gmail.com>2020-09-01 03:04:21 -0700
commit3903d3401bae8115d1e92cc8954b77f6ff05dc2d (patch)
tree50a7a50efa019a1c8c8a7399931ae348aa3cf4cb /README.md
parentc13e83e8adf2cc49daff41805a6a154fbabff0af (diff)
downloadisort-3903d3401bae8115d1e92cc8954b77f6ff05dc2d.tar.gz
Resovle #1434 add backslash-grid mode
Diffstat (limited to 'README.md')
-rw-r--r--README.md15
1 files changed, 13 insertions, 2 deletions
diff --git a/README.md b/README.md
index a5564312..6bd08043 100644
--- a/README.md
+++ b/README.md
@@ -164,7 +164,7 @@ notified.
You will notice above the \"multi\_line\_output\" setting. This setting
defines how from imports wrap when they extend past the line\_length
-limit and has 6 possible settings:
+limit and has 12 possible settings:
**0 - Grid**
@@ -285,7 +285,18 @@ from third_party import (
lib4, lib5, lib6)
```
-Note: to change the how constant indents appear - simply change the
+**11 - Backslash Grid**
+
+Same as Mode 0 - _Grid_ but uses backslashes instead of parentheses to group imports.
+
+```python
+from third_party import lib1, lib2, lib3, \
+ lib4, lib5
+```
+
+## Indentation
+
+To change the how constant indents appear - simply change the
indent property with the following accepted formats:
- Number of spaces you would like. For example: 4 would cause standard