├── .gitignore ├── CHANGELOG.rst ├── LICENSE.txt ├── README.rst ├── doc ├── screenshot_encabulator_full.png ├── screenshot_encabulator_reduced.png └── turbo_encabulator.py ├── ftplugin └── python.vim ├── python3 ├── compile.py ├── cyfolds.pyx └── setup.py └── test ├── basic_test_case.py ├── basic_test_case.py.testdata ├── example_foldlevels.py ├── generate_folding_testdata_files.py ├── run_with_mocked_vim.py └── test_generated_python_folds.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abarker/cyfolds/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abarker/cyfolds/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abarker/cyfolds/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abarker/cyfolds/HEAD/README.rst -------------------------------------------------------------------------------- /doc/screenshot_encabulator_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abarker/cyfolds/HEAD/doc/screenshot_encabulator_full.png -------------------------------------------------------------------------------- /doc/screenshot_encabulator_reduced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abarker/cyfolds/HEAD/doc/screenshot_encabulator_reduced.png -------------------------------------------------------------------------------- /doc/turbo_encabulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abarker/cyfolds/HEAD/doc/turbo_encabulator.py -------------------------------------------------------------------------------- /ftplugin/python.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abarker/cyfolds/HEAD/ftplugin/python.vim -------------------------------------------------------------------------------- /python3/compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abarker/cyfolds/HEAD/python3/compile.py -------------------------------------------------------------------------------- /python3/cyfolds.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abarker/cyfolds/HEAD/python3/cyfolds.pyx -------------------------------------------------------------------------------- /python3/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abarker/cyfolds/HEAD/python3/setup.py -------------------------------------------------------------------------------- /test/basic_test_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abarker/cyfolds/HEAD/test/basic_test_case.py -------------------------------------------------------------------------------- /test/basic_test_case.py.testdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abarker/cyfolds/HEAD/test/basic_test_case.py.testdata -------------------------------------------------------------------------------- /test/example_foldlevels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abarker/cyfolds/HEAD/test/example_foldlevels.py -------------------------------------------------------------------------------- /test/generate_folding_testdata_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abarker/cyfolds/HEAD/test/generate_folding_testdata_files.py -------------------------------------------------------------------------------- /test/run_with_mocked_vim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abarker/cyfolds/HEAD/test/run_with_mocked_vim.py -------------------------------------------------------------------------------- /test/test_generated_python_folds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abarker/cyfolds/HEAD/test/test_generated_python_folds.py --------------------------------------------------------------------------------