├── .gitignore ├── Gemfile ├── Gemfile.lock ├── README.md ├── autoload └── yankstack.vim ├── doc └── yankstack.txt ├── plugin └── yankstack.vim └── spec ├── fixtures └── repeat.vim ├── spec_helper.rb └── yankstack └── yankstack_spec.rb /.gitignore: -------------------------------------------------------------------------------- 1 | .rvmrc 2 | doc/tags 3 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxbrunsfeld/vim-yankstack/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxbrunsfeld/vim-yankstack/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxbrunsfeld/vim-yankstack/HEAD/README.md -------------------------------------------------------------------------------- /autoload/yankstack.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxbrunsfeld/vim-yankstack/HEAD/autoload/yankstack.vim -------------------------------------------------------------------------------- /doc/yankstack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxbrunsfeld/vim-yankstack/HEAD/doc/yankstack.txt -------------------------------------------------------------------------------- /plugin/yankstack.vim: -------------------------------------------------------------------------------- 1 | call yankstack#setup() 2 | -------------------------------------------------------------------------------- /spec/fixtures/repeat.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxbrunsfeld/vim-yankstack/HEAD/spec/fixtures/repeat.vim -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxbrunsfeld/vim-yankstack/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/yankstack/yankstack_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxbrunsfeld/vim-yankstack/HEAD/spec/yankstack/yankstack_spec.rb --------------------------------------------------------------------------------