mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-04-03 04:20:01 +02:00
updated files
This commit is contained in:
parent
4d4fd1ba97
commit
89946f0bc0
16 changed files with 2672 additions and 2 deletions
35
plugins/coffee/README.md.orig
Normal file
35
plugins/coffee/README.md.orig
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
## Coffeescript Plugin
|
||||
|
||||
This plugin provides aliases for quickly compiling and previewing your
|
||||
cofeescript code.
|
||||
|
||||
When writing Coffeescript it's very common to want to preview the output of a
|
||||
certain snippet of code, either because you want to test the output or because
|
||||
you'd like to execute it in a browser console which doesn't accept Coffeescript.
|
||||
|
||||
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 {
|
||||
c;
|
||||
}
|
||||
```
|
||||
|
||||
Also provides the following aliases:
|
||||
|
||||
* **cfc:** Copies the compiled JS to your clipboard. Very useful when you want
|
||||
to run the code in a JS console.
|
||||
|
||||
* **cfp:** Compiles from your currently copied clipboard. Useful when you want
|
||||
to compile large/multi-line snippets
|
||||
|
||||
* **cfpc:** Paste coffeescript from clipboard, compile to JS, then copy the
|
||||
the result back to clipboard.
|
||||
20
plugins/coffee/coffee.plugin.zsh.orig
Normal file
20
plugins/coffee/coffee.plugin.zsh.orig
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
#!/bin/zsh
|
||||
|
||||
# compile a string of coffeescript and print to output
|
||||
cf () {
|
||||
coffee -peb "$1"
|
||||
}
|
||||
# compile & copy to clipboard
|
||||
cfc () {
|
||||
cf "$1" | clipcopy
|
||||
}
|
||||
|
||||
# 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'
|
||||
Loading…
Add table
Add a link
Reference in a new issue