vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit 8ea87916332d8a0e0d0c3a73e01147476e43fdad parent 619cf955f8bd89e093d3b69fdad9360f0864a455 Author: Marc André Tanner <mat@brain-dump.org> Date: Wed, 2 Nov 2016 23:22:42 +0100 test/sam: add new test cases Diffstat:
| A | sam/addresses/lines.cmd | | | 6 | ++++++ |
| A | sam/addresses/lines.in | | | 20 | ++++++++++++++++++++ |
| A | sam/commands/filter-capitalize.cmd | | | 2 | ++ |
| A | sam/commands/filter-capitalize.in | | | 2 | ++ |
| A | sam/commands/loop-lines1.cmd | | | 4 | ++++ |
| A | sam/commands/loop-lines1.in | | | 10 | ++++++++++ |
| A | sam/commands/loop-lines2.cmd | | | 4 | ++++ |
| A | sam/commands/loop-lines2.in | | | 10 | ++++++++++ |
| A | sam/examples/comment-functions.cmd | | | 4 | ++++ |
| A | sam/examples/comment-functions.in | | | 15 | +++++++++++++++ |
10 files changed, 77 insertions(+), 0 deletions(-)
diff --git a/sam/addresses/lines.cmd b/sam/addresses/lines.cmd @@ -0,0 +1,6 @@ +10,10 c/--\n/ +16,17 { + i/</ + a/>/ +} +20d diff --git a/sam/addresses/lines.in b/sam/addresses/lines.in @@ -0,0 +1,20 @@ +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 diff --git a/sam/commands/filter-capitalize.cmd b/sam/commands/filter-capitalize.cmd @@ -0,0 +1 @@ +,x/[a-zA-Z]+/ | tr a-z A-Z +\ No newline at end of file diff --git a/sam/commands/filter-capitalize.in b/sam/commands/filter-capitalize.in @@ -0,0 +1 @@ +../README.md +\ No newline at end of file diff --git a/sam/commands/loop-lines1.cmd b/sam/commands/loop-lines1.cmd @@ -0,0 +1,4 @@ +,x/^.*$/ a,\\, +,x/$/ c/#/ +,y/\n/ a/*/ +,x a/--/ diff --git a/sam/commands/loop-lines1.in b/sam/commands/loop-lines1.in @@ -0,0 +1,10 @@ +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 diff --git a/sam/commands/loop-lines2.cmd b/sam/commands/loop-lines2.cmd @@ -0,0 +1,4 @@ +,x/^.*$/ i,//, +,x/^/ c/#/ +,y/\n/ i/*/ +,x i/--/ diff --git a/sam/commands/loop-lines2.in b/sam/commands/loop-lines2.in @@ -0,0 +1,10 @@ +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 diff --git a/sam/examples/comment-functions.cmd b/sam/examples/comment-functions.cmd @@ -0,0 +1,4 @@ +x/^static/+- g/ int / .,+/^\}/ { + i,#if 0\n, + a,\n#endif\n, +} diff --git a/sam/examples/comment-functions.in b/sam/examples/comment-functions.in @@ -0,0 +1,15 @@ +static int addi(int a, int b) { + return a+b; +} + +static long addl(long a, long b) { + return a+b; +} + +static int muli(int a, int b) { + return a*b; +} + +static long mull(long a, long b) { + return a*b; +}