#vim-mysql-suggestions A plugin of VIM to show suggestion from MySQL database.
##About
##Installation In your vimrc file add options.
" File Types you want to use suggestions
autocmd FileType php setlocal completefunc=MySQLCompleteFunction
autocmd FileType javascript setlocal completefunc=MySQLCompleteFunction
let g:database_host = "MySQL Host"
let g:database_password = "MySQL Password"
let g:database_database = "MySQL Database Name"
let g:database_user = "MySQL User"