]> git.madduck.net Git - etc/vim.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Warn that `right_hand_split()` modifies `bracket_depth` in leaves
authorŁukasz Langa <lukasz@langa.pl>
Tue, 15 May 2018 19:18:28 +0000 (12:18 -0700)
committerŁukasz Langa <lukasz@langa.pl>
Tue, 15 May 2018 19:31:33 +0000 (12:31 -0700)
black.py

index 81241f6ec0248df6aee8703c0c1dc7d6330e7303..9cb6e1d0f1c897d33a6793b3fe162c49b3820719 100644 (file)
--- a/black.py
+++ b/black.py
@@ -2013,6 +2013,8 @@ def right_hand_split(
     If the split was by optional parentheses, attempt splitting without them, too.
     `omit` is a collection of closing bracket IDs that shouldn't be considered for
     this split.
+
+    Note: running this function modifies `bracket_depth` on the leaves of `line`.
     """
     head = Line(depth=line.depth)
     body = Line(depth=line.depth + 1, inside_brackets=True)