blob: 030e46ee4c2ba86f750c4ae9b6f21cf94078465f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Acme Scripts
This is a collection of useful scripts used by me to extend Acme Editor.
## start-acme
Starts our favorite editor. ;)
## c+
Adds a comment to the beginning of the line. By default inserts a double slash
(//) but can be changed the behaviour passing the symbol you want to use.
For example:
```
echo test line | c+
> //test line
```
or with a custom symbol:
```
echo test line | c+ \#
> #test line
```
|