aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAlessandro Iezzi <aiezzi@alessandroiezzi.it>2021-04-08 13:58:42 +0200
committerAlessandro Iezzi <aiezzi@alessandroiezzi.it>2021-04-08 13:58:42 +0200
commitedf6781d82ec0e257110743494fcfa7aaa36fca2 (patch)
treeab9fb0f3ff7ed232aae2c915b5820cf2af289f49 /README.md
parenta0a46510f144d53ff9919ae810fd6a22e17ac635 (diff)
downloadacme-scripts-edf6781d82ec0e257110743494fcfa7aaa36fca2.tar.gz
acme-scripts-edf6781d82ec0e257110743494fcfa7aaa36fca2.zip
Add README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..5a9b9c0
--- /dev/null
+++ b/README.md
@@ -0,0 +1,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
+``` \ No newline at end of file