├── .gitignore ├── .travis.yml ├── Gemfile ├── Rakefile ├── VimFlavor ├── autoload └── niceblock.vim ├── doc └── niceblock.txt ├── plugin └── niceblock.vim └── t ├── core.vim ├── no-default-key-mapping-false.vim ├── no-default-key-mapping-true.vim └── ui.vim /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kana/vim-niceblock/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | rvm: 3 | - 2.1.5 4 | script: rake ci 5 | sudo: false 6 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'vim-flavor', '~> 2.2' 4 | -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kana/vim-niceblock/HEAD/Rakefile -------------------------------------------------------------------------------- /VimFlavor: -------------------------------------------------------------------------------- 1 | # No dependencies. 2 | -------------------------------------------------------------------------------- /autoload/niceblock.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kana/vim-niceblock/HEAD/autoload/niceblock.vim -------------------------------------------------------------------------------- /doc/niceblock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kana/vim-niceblock/HEAD/doc/niceblock.txt -------------------------------------------------------------------------------- /plugin/niceblock.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kana/vim-niceblock/HEAD/plugin/niceblock.vim -------------------------------------------------------------------------------- /t/core.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kana/vim-niceblock/HEAD/t/core.vim -------------------------------------------------------------------------------- /t/no-default-key-mapping-false.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kana/vim-niceblock/HEAD/t/no-default-key-mapping-false.vim -------------------------------------------------------------------------------- /t/no-default-key-mapping-true.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kana/vim-niceblock/HEAD/t/no-default-key-mapping-true.vim -------------------------------------------------------------------------------- /t/ui.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kana/vim-niceblock/HEAD/t/ui.vim --------------------------------------------------------------------------------