├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── docstring_wrap.py ├── docstring_wrap_plugin.vim ├── python-docstring.el ├── test_docstring_wrap.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .tox 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyph/python-docstring-mode/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyph/python-docstring-mode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyph/python-docstring-mode/HEAD/README.md -------------------------------------------------------------------------------- /docstring_wrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyph/python-docstring-mode/HEAD/docstring_wrap.py -------------------------------------------------------------------------------- /docstring_wrap_plugin.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyph/python-docstring-mode/HEAD/docstring_wrap_plugin.vim -------------------------------------------------------------------------------- /python-docstring.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyph/python-docstring-mode/HEAD/python-docstring.el -------------------------------------------------------------------------------- /test_docstring_wrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyph/python-docstring-mode/HEAD/test_docstring_wrap.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyph/python-docstring-mode/HEAD/tox.ini --------------------------------------------------------------------------------