├── .gitignore ├── Makefile ├── NrrwRgn.vmb ├── README.md ├── autoload └── nrrwrgn.vim ├── doc └── NarrowRegion.txt ├── plugin └── NrrwRgn.vim ├── post.pl ├── screencast.gif ├── test ├── runtest.sh ├── test1 │ ├── 1.txt │ ├── 1.txt.ok │ ├── 2.txt │ ├── 2.txt.ok │ ├── 3.txt │ ├── 3.txt.ok │ ├── cmd.sh │ └── description.md ├── test2 │ ├── 1.txt │ ├── 1.txt.ok │ ├── cmd.sh │ └── description.md ├── test3 │ ├── 1.txt │ ├── 1.txt.ok │ ├── cmd.sh │ └── description.md ├── test4 │ ├── 1.txt │ ├── 1.txt.ok │ ├── cmd.sh │ └── description.md ├── test5 │ ├── 1.txt │ ├── 1.txt.ok │ ├── cmd.sh │ └── description.md ├── test6 │ ├── 1.txt │ ├── 1.txt.ok │ ├── cmd.sh │ └── description.md └── test7 │ ├── 1.txt │ ├── 1.txt.ok │ ├── cmd.sh │ └── description.md └── todo.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/Makefile -------------------------------------------------------------------------------- /NrrwRgn.vmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/NrrwRgn.vmb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/README.md -------------------------------------------------------------------------------- /autoload/nrrwrgn.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/autoload/nrrwrgn.vim -------------------------------------------------------------------------------- /doc/NarrowRegion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/doc/NarrowRegion.txt -------------------------------------------------------------------------------- /plugin/NrrwRgn.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/plugin/NrrwRgn.vim -------------------------------------------------------------------------------- /post.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/post.pl -------------------------------------------------------------------------------- /screencast.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/screencast.gif -------------------------------------------------------------------------------- /test/runtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/test/runtest.sh -------------------------------------------------------------------------------- /test/test1/1.txt: -------------------------------------------------------------------------------- 1 | foobar 1.txt 2 | -------------------------------------------------------------------------------- /test/test1/1.txt.ok: -------------------------------------------------------------------------------- 1 | foobar 1.txt some more stuff 2 | -------------------------------------------------------------------------------- /test/test1/2.txt: -------------------------------------------------------------------------------- 1 | foobar 2.txt 2 | -------------------------------------------------------------------------------- /test/test1/2.txt.ok: -------------------------------------------------------------------------------- 1 | foobar 2.txt some more stuff 2 | -------------------------------------------------------------------------------- /test/test1/3.txt: -------------------------------------------------------------------------------- 1 | foobar 3.txt 2 | -------------------------------------------------------------------------------- /test/test1/3.txt.ok: -------------------------------------------------------------------------------- 1 | foobar 3.txt some more stuff 2 | -------------------------------------------------------------------------------- /test/test1/cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/test/test1/cmd.sh -------------------------------------------------------------------------------- /test/test1/description.md: -------------------------------------------------------------------------------- 1 | ## Test 1: Multi Narrowed Window for several distinct buffers ## 2 | -------------------------------------------------------------------------------- /test/test2/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/test/test2/1.txt -------------------------------------------------------------------------------- /test/test2/1.txt.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/test/test2/1.txt.ok -------------------------------------------------------------------------------- /test/test2/cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/test/test2/cmd.sh -------------------------------------------------------------------------------- /test/test2/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/test/test2/description.md -------------------------------------------------------------------------------- /test/test3/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/test/test3/1.txt -------------------------------------------------------------------------------- /test/test3/1.txt.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/test/test3/1.txt.ok -------------------------------------------------------------------------------- /test/test3/cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/test/test3/cmd.sh -------------------------------------------------------------------------------- /test/test3/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/test/test3/description.md -------------------------------------------------------------------------------- /test/test4/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/test/test4/1.txt -------------------------------------------------------------------------------- /test/test4/1.txt.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/test/test4/1.txt.ok -------------------------------------------------------------------------------- /test/test4/cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/test/test4/cmd.sh -------------------------------------------------------------------------------- /test/test4/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/test/test4/description.md -------------------------------------------------------------------------------- /test/test5/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/test/test5/1.txt -------------------------------------------------------------------------------- /test/test5/1.txt.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/test/test5/1.txt.ok -------------------------------------------------------------------------------- /test/test5/cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/test/test5/cmd.sh -------------------------------------------------------------------------------- /test/test5/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/test/test5/description.md -------------------------------------------------------------------------------- /test/test6/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/test/test6/1.txt -------------------------------------------------------------------------------- /test/test6/1.txt.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/test/test6/1.txt.ok -------------------------------------------------------------------------------- /test/test6/cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/test/test6/cmd.sh -------------------------------------------------------------------------------- /test/test6/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/test/test6/description.md -------------------------------------------------------------------------------- /test/test7/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/test/test7/1.txt -------------------------------------------------------------------------------- /test/test7/1.txt.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/test/test7/1.txt.ok -------------------------------------------------------------------------------- /test/test7/cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/test/test7/cmd.sh -------------------------------------------------------------------------------- /test/test7/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/test/test7/description.md -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/NrrwRgn/HEAD/todo.txt --------------------------------------------------------------------------------