]> 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:

Added --include and --exclude cli options (#281)
authorMika⠙ <mail@autophagy.io>
Fri, 1 Jun 2018 00:51:15 +0000 (02:51 +0200)
committerŁukasz Langa <lukasz@langa.pl>
Fri, 1 Jun 2018 00:51:15 +0000 (17:51 -0700)
commit51756a405cd6006ef22e9c12f212905fe0907f80
tree60f415e5665131aa6ef5bc1e59bab4fbac528996
parent1b189f6cdeca7b1f9669e0152c92875dff7b761a
Added --include and --exclude cli options (#281)

These 2 options allow you to pass in regular expressions that determine
whether files/directories are included or excluded in the recursive file
search.

Fixes #270
12 files changed:
README.md
black.py
tests/include_exclude_tests/b/.definitely_exclude/a.pie [new file with mode: 0644]
tests/include_exclude_tests/b/.definitely_exclude/a.py [new file with mode: 0644]
tests/include_exclude_tests/b/.definitely_exclude/a.pyi [new file with mode: 0644]
tests/include_exclude_tests/b/dont_exclude/a.pie [new file with mode: 0644]
tests/include_exclude_tests/b/dont_exclude/a.py [new file with mode: 0644]
tests/include_exclude_tests/b/dont_exclude/a.pyi [new file with mode: 0644]
tests/include_exclude_tests/b/exclude/a.pie [new file with mode: 0644]
tests/include_exclude_tests/b/exclude/a.py [new file with mode: 0644]
tests/include_exclude_tests/b/exclude/a.pyi [new file with mode: 0644]
tests/test_black.py