aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 5a9b9c06f47d5110f7a53ae676d856c4a65f7418 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Acme Scripts

This is a collection of useful scripts used by me to extend Acme Editor.

## c+
Adds a comment to the beginning of the line. By default insert a double slash
(//) but can be changed it's behaviour passing the symbol you want to use to
comment the line. FOr example:
```
echo test line | c+
> //test line
```
or with a custom symbol:
```
echo test line | c+ \#
> #test line
```