(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:
This gist is part of a blog post. Check it out at:
http://jasonrudolph.com/blog/2011/08/09/programming-achievements-how-to-level-up-as-a-developer
| import django | |
| from django.utils.translation import ugettext_lazy as _ | |
| from debug_toolbar.panels import DebugPanel | |
| from haystack.backends import queries | |
| class HaystackDebugPanel(DebugPanel): | |
| """ | |
| Panel that displays the Haystack queries. | |
| """ | |
| name = 'Haystack' |