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

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:

Update isort config to use_parentheses instead of combine_as_imports (#547)
authorCalum Lind <calumlind@gmail.com>
Thu, 8 Nov 2018 10:54:05 +0000 (10:54 +0000)
committerŁukasz Langa <lukasz@langa.pl>
Thu, 8 Nov 2018 10:54:05 +0000 (11:54 +0100)
commit158f796ef3ac0b41d39d8674aa08199d338b30d9
tree36e4051a5fbb4fe9b997f5615ecfa3de74707f5c
parent32eed7d1882987278d8365191ab7d7effe7977be
Update isort config to use_parentheses instead of combine_as_imports (#547)

The `combine_as_imports=True` modifies isort style as a side-effect and was not the intended purpose of the suggested change in #250. The problem was that isort was actually replacing the parens with backslash and using `combine_as_imports=True` happened to also produce the same result.

The actual setting should be `use_parentheses` as this tells isort to use parenthesis for line continuation instead of \ for lines over the allotted line length limit and matches precisely what black is outputting.
README.md