summaryrefslogtreecommitdiffstats
path: root/runtime/doc/message.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-08-01 21:52:12 +0000
committerBram Moolenaar <Bram@vim.org>2005-08-01 21:52:12 +0000
commitecf07c8910a8929d608b9438c3e01b2c23aaa752 (patch)
treee28436dc17c6694b01913cec6f010fb6bf99a2f5 /runtime/doc/message.txt
parent78984f503c0404ea36674a74076b091b27a9e528 (diff)
updated for version 7.0122
Diffstat (limited to 'runtime/doc/message.txt')
-rw-r--r--runtime/doc/message.txt15
1 files changed, 14 insertions, 1 deletions
diff --git a/runtime/doc/message.txt b/runtime/doc/message.txt
index 0784da01ca..a1c18bed99 100644
--- a/runtime/doc/message.txt
+++ b/runtime/doc/message.txt
@@ -1,4 +1,4 @@
-*message.txt* For Vim version 7.0aa. Last change: 2005 Jul 28
+*message.txt* For Vim version 7.0aa. Last change: 2005 Aug 01
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -287,6 +287,19 @@ Example: >
changes to: >
:w! /tmp/test
<
+ *E768* >
+ Swap file exists: {filename} (:silent! overrides)
+
+You are protected from overwriting a file that is being edited by Vim. This
+happens when you use ":w! filename" and a swapfile is found.
+- If the swapfile was left over from an old crashed edit session you may want
+ to delete the swapfile. Edit {filename} to find out information about the
+ swapfile.
+- If you want to write anyway prepend ":silent!" to the command. For example: >
+ :silent! w! /tmp/test
+< The special command is needed, since you already added the ! for overwriting
+ an existing file.
+
*E139* >
File is loaded in another buffer