├── .gitattributes ├── .github └── workflows │ └── CI.yml ├── LICENSE ├── README.md ├── codecov.yml ├── man.txt ├── test ├── test.sh └── test_files │ ├── numbers.txt │ ├── numbers_5_gone_3_bottom.txt │ ├── numbers_all_decreased.txt │ ├── numbers_delete_all_not_1.txt │ ├── python.py │ ├── python_init_at_bottom.py │ ├── python_last_4_lines.py │ ├── python_minus_one_char.py │ ├── python_reversed.py │ └── python_with_extra_comments.py └── vims /.gitattributes: -------------------------------------------------------------------------------- 1 | python*.py linguist-generated=true 2 | 3 | -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilesCranmer/vim-stream/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilesCranmer/vim-stream/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilesCranmer/vim-stream/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilesCranmer/vim-stream/HEAD/codecov.yml -------------------------------------------------------------------------------- /man.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilesCranmer/vim-stream/HEAD/man.txt -------------------------------------------------------------------------------- /test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilesCranmer/vim-stream/HEAD/test/test.sh -------------------------------------------------------------------------------- /test/test_files/numbers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilesCranmer/vim-stream/HEAD/test/test_files/numbers.txt -------------------------------------------------------------------------------- /test/test_files/numbers_5_gone_3_bottom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilesCranmer/vim-stream/HEAD/test/test_files/numbers_5_gone_3_bottom.txt -------------------------------------------------------------------------------- /test/test_files/numbers_all_decreased.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilesCranmer/vim-stream/HEAD/test/test_files/numbers_all_decreased.txt -------------------------------------------------------------------------------- /test/test_files/numbers_delete_all_not_1.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /test/test_files/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilesCranmer/vim-stream/HEAD/test/test_files/python.py -------------------------------------------------------------------------------- /test/test_files/python_init_at_bottom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilesCranmer/vim-stream/HEAD/test/test_files/python_init_at_bottom.py -------------------------------------------------------------------------------- /test/test_files/python_last_4_lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilesCranmer/vim-stream/HEAD/test/test_files/python_last_4_lines.py -------------------------------------------------------------------------------- /test/test_files/python_minus_one_char.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilesCranmer/vim-stream/HEAD/test/test_files/python_minus_one_char.py -------------------------------------------------------------------------------- /test/test_files/python_reversed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilesCranmer/vim-stream/HEAD/test/test_files/python_reversed.py -------------------------------------------------------------------------------- /test/test_files/python_with_extra_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilesCranmer/vim-stream/HEAD/test/test_files/python_with_extra_comments.py -------------------------------------------------------------------------------- /vims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilesCranmer/vim-stream/HEAD/vims --------------------------------------------------------------------------------