├── .vimrc ├── Fn1.png ├── Fn2.png ├── README.md ├── extend ├── cssman ├── html.dict ├── javascript.dict ├── man ├── phpclist.txt └── phpman └── screenshot.png /.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/vim-plug/HEAD/.vimrc -------------------------------------------------------------------------------- /Fn1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/vim-plug/HEAD/Fn1.png -------------------------------------------------------------------------------- /Fn2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/vim-plug/HEAD/Fn2.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/vim-plug/HEAD/README.md -------------------------------------------------------------------------------- /extend/cssman: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | open http://caniuse.com/#search=$1 3 | -------------------------------------------------------------------------------- /extend/html.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/vim-plug/HEAD/extend/html.dict -------------------------------------------------------------------------------- /extend/javascript.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/vim-plug/HEAD/extend/javascript.dict -------------------------------------------------------------------------------- /extend/man: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | open "http://cn.bing.com/search?q=$1" 3 | -------------------------------------------------------------------------------- /extend/phpclist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/vim-plug/HEAD/extend/phpclist.txt -------------------------------------------------------------------------------- /extend/phpman: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | open http://cn2.php.net/$1 3 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/vim-plug/HEAD/screenshot.png --------------------------------------------------------------------------------