├── .vimrc ├── README ├── TODO ├── hotkeys ├── ptags.cpp └── vimfiles ├── .netrwhist ├── after └── plugin │ └── TabularMaps.vim ├── autoload ├── checksyntax.vim └── tabular.vim ├── doc ├── NERD_tree.txt ├── Tabular.txt ├── checksyntax.txt └── taglist.txt ├── ftplugin ├── c.vim ├── cs.vim ├── java.vim ├── php.vim ├── python.vim └── txt.vim ├── funclist.txt ├── nerdtree_plugin ├── exec_menuitem.vim └── fs_menu.vim ├── phpm ├── HISTORY ├── README ├── generator.php ├── lib │ └── epc │ │ ├── object.php │ │ └── phpm │ │ ├── install.php │ │ ├── listall.php │ │ ├── listinstalled.php │ │ ├── parser.php │ │ └── reader.php ├── list.xml ├── php.xml ├── phpm ├── reader.php └── settings.xml ├── plugin ├── NERD_tree.vim ├── Tabular.vim ├── checksyntax.vim ├── filetype.vim ├── php-doc.vim ├── phpcs.vim ├── taglist.vim └── tasklist.vim └── template.spec /.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/.vimrc -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/TODO -------------------------------------------------------------------------------- /hotkeys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/hotkeys -------------------------------------------------------------------------------- /ptags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/ptags.cpp -------------------------------------------------------------------------------- /vimfiles/.netrwhist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/.netrwhist -------------------------------------------------------------------------------- /vimfiles/after/plugin/TabularMaps.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/after/plugin/TabularMaps.vim -------------------------------------------------------------------------------- /vimfiles/autoload/checksyntax.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/autoload/checksyntax.vim -------------------------------------------------------------------------------- /vimfiles/autoload/tabular.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/autoload/tabular.vim -------------------------------------------------------------------------------- /vimfiles/doc/NERD_tree.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/doc/NERD_tree.txt -------------------------------------------------------------------------------- /vimfiles/doc/Tabular.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/doc/Tabular.txt -------------------------------------------------------------------------------- /vimfiles/doc/checksyntax.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/doc/checksyntax.txt -------------------------------------------------------------------------------- /vimfiles/doc/taglist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/doc/taglist.txt -------------------------------------------------------------------------------- /vimfiles/ftplugin/c.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/ftplugin/c.vim -------------------------------------------------------------------------------- /vimfiles/ftplugin/cs.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/ftplugin/cs.vim -------------------------------------------------------------------------------- /vimfiles/ftplugin/java.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/ftplugin/java.vim -------------------------------------------------------------------------------- /vimfiles/ftplugin/php.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/ftplugin/php.vim -------------------------------------------------------------------------------- /vimfiles/ftplugin/python.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/ftplugin/python.vim -------------------------------------------------------------------------------- /vimfiles/ftplugin/txt.vim: -------------------------------------------------------------------------------- 1 | set autoindent 2 | -------------------------------------------------------------------------------- /vimfiles/funclist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/funclist.txt -------------------------------------------------------------------------------- /vimfiles/nerdtree_plugin/exec_menuitem.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/nerdtree_plugin/exec_menuitem.vim -------------------------------------------------------------------------------- /vimfiles/nerdtree_plugin/fs_menu.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/nerdtree_plugin/fs_menu.vim -------------------------------------------------------------------------------- /vimfiles/phpm/HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/phpm/HISTORY -------------------------------------------------------------------------------- /vimfiles/phpm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/phpm/README -------------------------------------------------------------------------------- /vimfiles/phpm/generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/phpm/generator.php -------------------------------------------------------------------------------- /vimfiles/phpm/lib/epc/object.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/phpm/lib/epc/object.php -------------------------------------------------------------------------------- /vimfiles/phpm/lib/epc/phpm/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/phpm/lib/epc/phpm/install.php -------------------------------------------------------------------------------- /vimfiles/phpm/lib/epc/phpm/listall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/phpm/lib/epc/phpm/listall.php -------------------------------------------------------------------------------- /vimfiles/phpm/lib/epc/phpm/listinstalled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/phpm/lib/epc/phpm/listinstalled.php -------------------------------------------------------------------------------- /vimfiles/phpm/lib/epc/phpm/parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/phpm/lib/epc/phpm/parser.php -------------------------------------------------------------------------------- /vimfiles/phpm/lib/epc/phpm/reader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/phpm/lib/epc/phpm/reader.php -------------------------------------------------------------------------------- /vimfiles/phpm/list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/phpm/list.xml -------------------------------------------------------------------------------- /vimfiles/phpm/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/phpm/php.xml -------------------------------------------------------------------------------- /vimfiles/phpm/phpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/phpm/phpm -------------------------------------------------------------------------------- /vimfiles/phpm/reader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/phpm/reader.php -------------------------------------------------------------------------------- /vimfiles/phpm/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/phpm/settings.xml -------------------------------------------------------------------------------- /vimfiles/plugin/NERD_tree.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/plugin/NERD_tree.vim -------------------------------------------------------------------------------- /vimfiles/plugin/Tabular.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/plugin/Tabular.vim -------------------------------------------------------------------------------- /vimfiles/plugin/checksyntax.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/plugin/checksyntax.vim -------------------------------------------------------------------------------- /vimfiles/plugin/filetype.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/plugin/filetype.vim -------------------------------------------------------------------------------- /vimfiles/plugin/php-doc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/plugin/php-doc.vim -------------------------------------------------------------------------------- /vimfiles/plugin/phpcs.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/plugin/phpcs.vim -------------------------------------------------------------------------------- /vimfiles/plugin/taglist.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/plugin/taglist.vim -------------------------------------------------------------------------------- /vimfiles/plugin/tasklist.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/plugin/tasklist.vim -------------------------------------------------------------------------------- /vimfiles/template.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqlblue/php-vim/HEAD/vimfiles/template.spec --------------------------------------------------------------------------------