summaryrefslogtreecommitdiffstats
path: root/runtime/doc/tips.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-04-19 21:37:59 +0000
committerBram Moolenaar <Bram@vim.org>2005-04-19 21:37:59 +0000
commitfe5cafe9b42014195e256138f75f55c4dfafd198 (patch)
tree8b0383f96c78c421bac8a7a1468abc6ff51f2d5a /runtime/doc/tips.txt
parentb6b6dc8973a0fc17f8a853362ecd8c0bbcfcda7d (diff)
updated for version 7.0068
Diffstat (limited to 'runtime/doc/tips.txt')
-rw-r--r--runtime/doc/tips.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/tips.txt b/runtime/doc/tips.txt
index c4857a31df..d60ff14830 100644
--- a/runtime/doc/tips.txt
+++ b/runtime/doc/tips.txt
@@ -1,4 +1,4 @@
-*tips.txt* For Vim version 7.0aa. Last change: 2005 Apr 01
+*tips.txt* For Vim version 7.0aa. Last change: 2005 Apr 19
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -259,7 +259,7 @@ digraph.c
and I want to rename *.c *.bla. I'd do it like this: >
$ vim
- :r! ls *.c
+ :r !ls *.c
:%s/\(.*\).c/mv & \1.bla
:w !sh
:q!