Conflict merge 1

This commit is contained in:
Preston Davis 2015-10-31 06:26:30 -04:00
commit 4d4fd1ba97
19 changed files with 1371 additions and 0 deletions

View file

@ -11,7 +11,11 @@ Preview the compiled result of your coffeescript with `cf "code"` as per the
following:
```zsh
<<<<<<< HEAD
$ cf 'if a then b else c'
=======
$ cf 'if a then be else c'
>>>>>>> c0134a9450e486251b247735e022d7efeb496b9c
if (a) {
b;
} else {

View file

@ -10,7 +10,11 @@ cfc () {
}
# compile from clipboard & print
<<<<<<< HEAD
alias cfp='cf "$(clippaste)"'
=======
alias cfp='coffeeMe "$(clippaste)"'
>>>>>>> c0134a9450e486251b247735e022d7efeb496b9c
# compile from clipboard and copy to clipboard
alias cfpc='cfp | clipcopy'