summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-07-16 15:31:17 +0200
committerBram Moolenaar <Bram@vim.org>2017-07-16 15:31:17 +0200
commit90305c66a8637ea43a6509c7ab597734dd218365 (patch)
tree355ef583c5c9f79a4f5849c087ba270728e402bf /runtime
parent6a77d2667e982655f6adacee774ee7aa2581bd8a (diff)
patch 8.0.0721: :argedit can only have one argumentv8.0.0721
Problem: :argedit can only have one argument. Solution: Allow for multiple arguments. (Christian Brabandt)
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/editing.txt14
1 files changed, 7 insertions, 7 deletions
diff --git a/runtime/doc/editing.txt b/runtime/doc/editing.txt
index ecb9b87c2f..bcd86a1a5e 100644
--- a/runtime/doc/editing.txt
+++ b/runtime/doc/editing.txt
@@ -1,4 +1,4 @@
-*editing.txt* For Vim version 8.0. Last change: 2017 Jun 20
+*editing.txt* For Vim version 8.0. Last change: 2017 Jul 16
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -617,16 +617,16 @@ list of the current window.
Also see |++opt| and |+cmd|.
{Vi: no ++opt}
-:[count]arge[dit][!] [++opt] [+cmd] {name} *:arge* *:argedit*
- Add {name} to the argument list and edit it.
+:[count]arge[dit][!] [++opt] [+cmd] {name} .. *:arge* *:argedit*
+ Add {name}s to the argument list and edit it.
When {name} already exists in the argument list, this
entry is edited.
This is like using |:argadd| and then |:edit|.
- Note that only one file name is allowed, and spaces
- inside the file name are allowed, like with |:edit|.
+ Spaces in filenames have to be escaped with "\".
[count] is used like with |:argadd|.
- [!] is required if the current file cannot be
- |abandon|ed.
+ If the current file cannot be |abandon|ed {name}s will
+ still be added to the argument list, but won't be
+ edited. No check for duplicates is done.
Also see |++opt| and |+cmd|.
{not in Vi}