aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2021-05-25 01:20:35 +0200
committerJohn Ankarström <john@ankarstrom.se>2021-05-25 01:20:35 +0200
commit5dd1844b66908cb16f7b7e1a792a11b9780de183 (patch)
tree3346540309985fc0369cb514dad6fad2bdec4673
parent4d759d9835082f8036d693421d786c1ac297f386 (diff)
downloadvp-5dd1844b66908cb16f7b7e1a792a11b9780de183.tar.gz
Preserve position after 'g' command
This unfortunately requires copying the command, which is visible for a short amount of time. But function should trump form here.
-rwxr-xr-xvpeval4
-rw-r--r--vprc3
2 files changed, 3 insertions, 4 deletions
diff --git a/vpeval b/vpeval
index d2226d4..4c5b785 100755
--- a/vpeval
+++ b/vpeval
@@ -1,4 +1,2 @@
#!/bin/sh
-c=`sed '/^#/d'`
-echo "$c"
-echo "$(eval "$c" 2>&1)" | sed 's/^/# /'
+echo "$(eval "$(sed '/^#/d')" 2>&1)" | sed 's/^/# /'
diff --git a/vprc b/vprc
index 6616e50..348d5cb 100644
--- a/vprc
+++ b/vprc
@@ -1,2 +1,3 @@
-map g :1,$!vpeval /^# k$
+set leftright
+map g mgGo#:1 y/^# nP!Gvpeval `g
map q :1,/^#/-1d :%s/^# //g :1