├── .gitignore ├── .travis.yml ├── LICENSE.md ├── Makefile ├── README.md ├── after └── ftplugin │ └── python │ └── textobj-python.vim ├── autoload └── textobj │ └── python.vim └── test ├── run ├── test.py ├── textobj-python.vader └── vimrc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bps/vim-textobj-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: vim 2 | 3 | script: | 4 | make test 5 | 6 | sudo: false 7 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bps/vim-textobj-python/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bps/vim-textobj-python/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bps/vim-textobj-python/HEAD/README.md -------------------------------------------------------------------------------- /after/ftplugin/python/textobj-python.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bps/vim-textobj-python/HEAD/after/ftplugin/python/textobj-python.vim -------------------------------------------------------------------------------- /autoload/textobj/python.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bps/vim-textobj-python/HEAD/autoload/textobj/python.vim -------------------------------------------------------------------------------- /test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bps/vim-textobj-python/HEAD/test/run -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bps/vim-textobj-python/HEAD/test/test.py -------------------------------------------------------------------------------- /test/textobj-python.vader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bps/vim-textobj-python/HEAD/test/textobj-python.vader -------------------------------------------------------------------------------- /test/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bps/vim-textobj-python/HEAD/test/vimrc --------------------------------------------------------------------------------