├── .gitignore ├── LICENSE ├── QUICKREF ├── README ├── autoload └── vimtodo.vim ├── doc └── todo.txt ├── ftplugin └── todo.vim ├── make_dist.sh ├── misc ├── README ├── autocommit.cfg └── autocommit.sh ├── syntax └── todo.vim └── t ├── README ├── clean.sh ├── test001.t ├── test002.t ├── test003.t ├── test005.t ├── test006.t ├── test007.t ├── test999.t └── test_setup.vim /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mivok/vimtodo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mivok/vimtodo/HEAD/LICENSE -------------------------------------------------------------------------------- /QUICKREF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mivok/vimtodo/HEAD/QUICKREF -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mivok/vimtodo/HEAD/README -------------------------------------------------------------------------------- /autoload/vimtodo.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mivok/vimtodo/HEAD/autoload/vimtodo.vim -------------------------------------------------------------------------------- /doc/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mivok/vimtodo/HEAD/doc/todo.txt -------------------------------------------------------------------------------- /ftplugin/todo.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mivok/vimtodo/HEAD/ftplugin/todo.vim -------------------------------------------------------------------------------- /make_dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mivok/vimtodo/HEAD/make_dist.sh -------------------------------------------------------------------------------- /misc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mivok/vimtodo/HEAD/misc/README -------------------------------------------------------------------------------- /misc/autocommit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mivok/vimtodo/HEAD/misc/autocommit.cfg -------------------------------------------------------------------------------- /misc/autocommit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mivok/vimtodo/HEAD/misc/autocommit.sh -------------------------------------------------------------------------------- /syntax/todo.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mivok/vimtodo/HEAD/syntax/todo.vim -------------------------------------------------------------------------------- /t/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mivok/vimtodo/HEAD/t/README -------------------------------------------------------------------------------- /t/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mivok/vimtodo/HEAD/t/clean.sh -------------------------------------------------------------------------------- /t/test001.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mivok/vimtodo/HEAD/t/test001.t -------------------------------------------------------------------------------- /t/test002.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mivok/vimtodo/HEAD/t/test002.t -------------------------------------------------------------------------------- /t/test003.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mivok/vimtodo/HEAD/t/test003.t -------------------------------------------------------------------------------- /t/test005.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mivok/vimtodo/HEAD/t/test005.t -------------------------------------------------------------------------------- /t/test006.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mivok/vimtodo/HEAD/t/test006.t -------------------------------------------------------------------------------- /t/test007.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mivok/vimtodo/HEAD/t/test007.t -------------------------------------------------------------------------------- /t/test999.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mivok/vimtodo/HEAD/t/test999.t -------------------------------------------------------------------------------- /t/test_setup.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mivok/vimtodo/HEAD/t/test_setup.vim --------------------------------------------------------------------------------