├── .gitignore ├── Makefile ├── README.markdown ├── VimFlavor ├── addon-info.json ├── autoload └── textobj │ └── comment.vim ├── doc └── textobj-comment.txt ├── plugin └── textobj │ └── comment.vim └── t ├── fixtures ├── Inline.java ├── paired.c └── simple.py ├── inline.vim ├── leaders.vim ├── paired.vim ├── plugin.vim ├── simple.vim └── util └── helpers.vim /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glts/vim-textobj-comment/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glts/vim-textobj-comment/HEAD/Makefile -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glts/vim-textobj-comment/HEAD/README.markdown -------------------------------------------------------------------------------- /VimFlavor: -------------------------------------------------------------------------------- 1 | flavor 'kana/vim-textobj-user', '~> 0.4' 2 | -------------------------------------------------------------------------------- /addon-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glts/vim-textobj-comment/HEAD/addon-info.json -------------------------------------------------------------------------------- /autoload/textobj/comment.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glts/vim-textobj-comment/HEAD/autoload/textobj/comment.vim -------------------------------------------------------------------------------- /doc/textobj-comment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glts/vim-textobj-comment/HEAD/doc/textobj-comment.txt -------------------------------------------------------------------------------- /plugin/textobj/comment.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glts/vim-textobj-comment/HEAD/plugin/textobj/comment.vim -------------------------------------------------------------------------------- /t/fixtures/Inline.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glts/vim-textobj-comment/HEAD/t/fixtures/Inline.java -------------------------------------------------------------------------------- /t/fixtures/paired.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glts/vim-textobj-comment/HEAD/t/fixtures/paired.c -------------------------------------------------------------------------------- /t/fixtures/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glts/vim-textobj-comment/HEAD/t/fixtures/simple.py -------------------------------------------------------------------------------- /t/inline.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glts/vim-textobj-comment/HEAD/t/inline.vim -------------------------------------------------------------------------------- /t/leaders.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glts/vim-textobj-comment/HEAD/t/leaders.vim -------------------------------------------------------------------------------- /t/paired.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glts/vim-textobj-comment/HEAD/t/paired.vim -------------------------------------------------------------------------------- /t/plugin.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glts/vim-textobj-comment/HEAD/t/plugin.vim -------------------------------------------------------------------------------- /t/simple.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glts/vim-textobj-comment/HEAD/t/simple.vim -------------------------------------------------------------------------------- /t/util/helpers.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glts/vim-textobj-comment/HEAD/t/util/helpers.vim --------------------------------------------------------------------------------