zsh: add an M alias
author |
Steve Losh <steve@stevelosh.com> |
date |
Wed, 04 Aug 2010 13:30:48 -0400 |
parents |
621aea6dbde4 |
children |
d5b47e343a59 |
alias pbc='pbcopy'
alias pbp='pbpaste'
alias M='mvim .'
function mdown () {
(echo '
<head>
<style>
body {
font-family: Georgia;
font-size: 17px;
line-height: 24px;
color: #222;
text-rendering: optimizeLegibility;
width: 670px;
margin: 20px auto;
padding-bottom: 80px;
}
h1, h2, h3, h4, h5, h6 {
font-weight: normal;
margin-top: 48px;
}
h1 { font-size: 48px; }
h2 {
font-size: 36px;
border-bottom: 6px solid #ddd;
padding: 0 0 6px 0;
}
h3 {
font-size: 24px;
border-bottom: 6px solid #eee;
padding: 0 0 2px 0;
}
h4 { font-size: 20px; }
pre {
background-color: #f5f5f5;
font: normal 15px Menlo;
line-height: 24px;
padding: 8px 10px;
overflow-x: scroll;
}
</style>
</head>
'; markdown $@) | bcat
}