vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit 1b4282ff9cc3309c8f472ff148209def9fce614f parent 4728d2954f00e7b8d7edd314e7a6438d660e0819 Author: Marc André Tanner <mat@brain-dump.org> Date: Sat, 11 Feb 2017 15:45:41 +0100 test/vis: use [0-9]+ instead of \d+ in regex Diffstat:
| M | vis/multiple-cursors/align-indent-columns.keys | | | 2 | +- |
| M | vis/multiple-cursors/remove-column.keys | | | 2 | +- |
| M | vis/multiple-cursors/selections-rotate.keys | | | 2 | +- |
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/vis/multiple-cursors/align-indent-columns.keys b/vis/multiple-cursors/align-indent-columns.keys @@ -1,3 +1,3 @@ -:x/\d+<Enter> +:x/[0-9]+<Enter> <Tab> <Escape> diff --git a/vis/multiple-cursors/remove-column.keys b/vis/multiple-cursors/remove-column.keys @@ -1,4 +1,4 @@ -:x/\d+<Enter> +:x/[0-9]+<Enter> 2<C-l> :{ i/{/ a/}/ }<Enter> <Escape><Escape> diff --git a/vis/multiple-cursors/selections-rotate.keys b/vis/multiple-cursors/selections-rotate.keys @@ -1,4 +1,4 @@ -:x/\d+<Enter> +:x/[0-9]+<Enter> 2+ 2- +