(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:
| import com.google.gson.Gson; | |
| import com.google.gson.JsonSyntaxException; | |
| import com.android.volley.AuthFailureError; | |
| import com.android.volley.NetworkResponse; | |
| import com.android.volley.ParseError; | |
| import com.android.volley.Request; | |
| import com.android.volley.Response; | |
| import com.android.volley.Response.ErrorListener; | |
| import com.android.volley.Response.Listener; |
| #!/usr/bin/env python | |
| # coding: utf-8 | |
| import argparse | |
| import os | |
| import sys | |
| import time | |
| import atexit | |
| import logging | |
| import signal |
| # | |
| # This is an example of a knife.rb configuration that uses yml and a | |
| # simple env var (CHEF_ENV) to manage multiple hosted Chef environments. | |
| # | |
| # Example usage: | |
| # export CHEF_ENV=evnironment_01 | |
| # knife status | |
| # | |
| # Based on: http://blog.blankpad.net/2010/09/28/multiple-knife-environments---the-return/ | |
| # |