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
| from fabric.api import * | |
| env.hosts = ['host.name.com'] | |
| env.user = 'user' | |
| env.key_filename = '/path/to/keyfile.pem' | |
| def local_uname(): | |
| local('uname -a') | |
| def remote_uname(): |