- C-a == Ctrl-a
- M-a == Alt-a
:q close
:w write/saves
:wa[!] write/save all windows [force]
:wq write/save and close
A Muttator Reference Sheet / Cheat Sheet | |
Muttator v0.6 for Thunderbird v3.0 and 3.1.* (muttator-20100629.xpi) | |
The main thing to know about using Muttator is that there are two primary modes, EX mode and MESSAGE mode, | |
and keyboard mappings can work very differently in the two modes. It's not obvious which mode you're in; | |
you have to look at the bottom left of your Thunderbird window where the status line with either be blank | |
(EX mode) or will say "-- MESSAGE --". There is also an odd "-- CARET --" mode that you'll probably want | |
to <ESC> out of as soon as possible. |
# -*- coding: utf-8 | |
"""\ | |
A simple demo of logging configuration with YAML (Python 2.7) | |
============================================================= | |
Requires PyYAML -> "easy_install PyYAML" | |
See the recipes for configuring logging with dicts and YAML | |
- http://docs.python.org/2.7/howto/logging-cookbook.html | |
- http://stackoverflow.com/questions/10519392/python2-7-logging-configuration-with-yaml |