├── .gitignore ├── Makefile ├── README.md ├── autoload └── ac_smooth_scroll.vim ├── doc ├── accelerated-smooth-scroll.jax └── accelerated-smooth-scroll.txt └── plugin └── ac_smooth_scroll.vim /.gitignore: -------------------------------------------------------------------------------- 1 | /doc/tags* 2 | *.swp 3 | /accelerated-smooth-scroll.zip 4 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonchu/accelerated-smooth-scroll/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonchu/accelerated-smooth-scroll/HEAD/README.md -------------------------------------------------------------------------------- /autoload/ac_smooth_scroll.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonchu/accelerated-smooth-scroll/HEAD/autoload/ac_smooth_scroll.vim -------------------------------------------------------------------------------- /doc/accelerated-smooth-scroll.jax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonchu/accelerated-smooth-scroll/HEAD/doc/accelerated-smooth-scroll.jax -------------------------------------------------------------------------------- /doc/accelerated-smooth-scroll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonchu/accelerated-smooth-scroll/HEAD/doc/accelerated-smooth-scroll.txt -------------------------------------------------------------------------------- /plugin/ac_smooth_scroll.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonchu/accelerated-smooth-scroll/HEAD/plugin/ac_smooth_scroll.vim --------------------------------------------------------------------------------