├── .bumpversion.cfg ├── .github ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── bug_report.md └── pull_request_template.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Commands ├── Black: Disable format in selection.tmCommand ├── Create black config.tmCommand ├── Create flake8 config.tmCommand ├── Create isort config.tmCommand ├── Create pylintrc config.tmCommand ├── Create tm_properties to current working directory.tmCommand ├── Create tm_properties to project root.tmCommand ├── Document Did Save.tmCommand ├── Document Will Save.tmCommand └── Go to error line.tmCommand ├── LICENSE.txt ├── README.md ├── Rakefile ├── SECURITY.md ├── Screenshots ├── demo-1.gif └── demo-2.gif ├── Snippets ├── Disable Bundle.tmSnippet ├── Disable linter:formatter.tmSnippet ├── Insert TM_PYTHON_FMT_PYTHON_PATH.tmSnippet ├── Insert TM_PYTHON_FMT_VIRTUAL_ENV.tmSnippet ├── Insert environment variable.tmSnippet ├── disable.tmSnippet ├── noqa + pylint.tmSnippet ├── noqa entire file.tmSnippet ├── noqa.tmSnippet ├── pylint: disable all.tmSnippet ├── skip entire file.tmSnippet └── skip.tmSnippet ├── Support ├── goto_error_line.rb ├── lib │ ├── constants.rb │ ├── helpers.rb │ ├── linters.rb │ ├── logger.rb │ └── storage.rb ├── python_fmt.rb └── toggle_format.rb ├── Syntaxes └── Python FMT.tmLanguage ├── info.plist └── requirements.txt /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @vigo 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Commands/Black: Disable format in selection.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Commands/Black: Disable format in selection.tmCommand -------------------------------------------------------------------------------- /Commands/Create black config.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Commands/Create black config.tmCommand -------------------------------------------------------------------------------- /Commands/Create flake8 config.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Commands/Create flake8 config.tmCommand -------------------------------------------------------------------------------- /Commands/Create isort config.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Commands/Create isort config.tmCommand -------------------------------------------------------------------------------- /Commands/Create pylintrc config.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Commands/Create pylintrc config.tmCommand -------------------------------------------------------------------------------- /Commands/Create tm_properties to current working directory.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Commands/Create tm_properties to current working directory.tmCommand -------------------------------------------------------------------------------- /Commands/Create tm_properties to project root.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Commands/Create tm_properties to project root.tmCommand -------------------------------------------------------------------------------- /Commands/Document Did Save.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Commands/Document Did Save.tmCommand -------------------------------------------------------------------------------- /Commands/Document Will Save.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Commands/Document Will Save.tmCommand -------------------------------------------------------------------------------- /Commands/Go to error line.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Commands/Go to error line.tmCommand -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Rakefile -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Screenshots/demo-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Screenshots/demo-1.gif -------------------------------------------------------------------------------- /Screenshots/demo-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Screenshots/demo-2.gif -------------------------------------------------------------------------------- /Snippets/Disable Bundle.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Snippets/Disable Bundle.tmSnippet -------------------------------------------------------------------------------- /Snippets/Disable linter:formatter.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Snippets/Disable linter:formatter.tmSnippet -------------------------------------------------------------------------------- /Snippets/Insert TM_PYTHON_FMT_PYTHON_PATH.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Snippets/Insert TM_PYTHON_FMT_PYTHON_PATH.tmSnippet -------------------------------------------------------------------------------- /Snippets/Insert TM_PYTHON_FMT_VIRTUAL_ENV.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Snippets/Insert TM_PYTHON_FMT_VIRTUAL_ENV.tmSnippet -------------------------------------------------------------------------------- /Snippets/Insert environment variable.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Snippets/Insert environment variable.tmSnippet -------------------------------------------------------------------------------- /Snippets/disable.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Snippets/disable.tmSnippet -------------------------------------------------------------------------------- /Snippets/noqa + pylint.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Snippets/noqa + pylint.tmSnippet -------------------------------------------------------------------------------- /Snippets/noqa entire file.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Snippets/noqa entire file.tmSnippet -------------------------------------------------------------------------------- /Snippets/noqa.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Snippets/noqa.tmSnippet -------------------------------------------------------------------------------- /Snippets/pylint: disable all.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Snippets/pylint: disable all.tmSnippet -------------------------------------------------------------------------------- /Snippets/skip entire file.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Snippets/skip entire file.tmSnippet -------------------------------------------------------------------------------- /Snippets/skip.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Snippets/skip.tmSnippet -------------------------------------------------------------------------------- /Support/goto_error_line.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Support/goto_error_line.rb -------------------------------------------------------------------------------- /Support/lib/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Support/lib/constants.rb -------------------------------------------------------------------------------- /Support/lib/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Support/lib/helpers.rb -------------------------------------------------------------------------------- /Support/lib/linters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Support/lib/linters.rb -------------------------------------------------------------------------------- /Support/lib/logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Support/lib/logger.rb -------------------------------------------------------------------------------- /Support/lib/storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Support/lib/storage.rb -------------------------------------------------------------------------------- /Support/python_fmt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Support/python_fmt.rb -------------------------------------------------------------------------------- /Support/toggle_format.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Support/toggle_format.rb -------------------------------------------------------------------------------- /Syntaxes/Python FMT.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/Syntaxes/Python FMT.tmLanguage -------------------------------------------------------------------------------- /info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/info.plist -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigo/textmate2-python-fmt/HEAD/requirements.txt --------------------------------------------------------------------------------