Tested in Mac OS X: super == command
Open/Goto
- super+t: go to file
- super+ctrl+p: go to project
- super+r: go to methods
| INITIALISATION | |
| ============== | |
| load wp-config.php | |
| set up default constants | |
| load wp-content/advanced-cache.php if it exists | |
| load wp-content/db.php if it exists | |
| connect to mysql, select db | |
| load object cache (object-cache.php if it exists, or wp-include/cache.php if not) | |
| load wp-content/sunrise.php if it exists (multisite only) |
| [xdebug] | |
| zend_extension="xdebug.so" | |
| xdebug.remote_enable=1 | |
| xdebug.remote_connect_back=1 | |
| xdebug.default_enable=1 | |
| xdebug.remote_autostart=1 | |
| xdebug.remote_host=localhost | |
| xdebug.remote_handler=dbgp | |
| xdebug.remote_port=9000 | |
| xdebug.cli_color=1 |
| PS1='\[\033[31m\]$(retval=$?;if [[ $retval != 0 ]]; then echo "^E$retval "; fi)\[\033[00m\]\[\033[32m\]\u@\h\[\033[00m\][$(date "+%H:%M:%S")]:\[\033[35m\]\w\[\033[31m\]$(__git_ps1 " (%s)")$(__svn_ps1 " (%s)")\[\033[00m\]\n\!\$ ' |