diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-04-05 20:41:53 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-04-05 20:41:53 +0000 |
commit | 910f66f90c928da8b607ccfdc12fc33d9cb8d4a9 (patch) | |
tree | 152a03d1d7ea3e8d433addba4f463d8a7a68a5fd /runtime/doc/windows.txt | |
parent | e2f98b95c8071f772695602cd4f714dc588eb8e7 (diff) | |
download | vim-git-910f66f90c928da8b607ccfdc12fc33d9cb8d4a9.tar.gz |
updated for version 7.0c10v7.0c10
Diffstat (limited to 'runtime/doc/windows.txt')
-rw-r--r-- | runtime/doc/windows.txt | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/runtime/doc/windows.txt b/runtime/doc/windows.txt index 954373ebc..b6db5404f 100644 --- a/runtime/doc/windows.txt +++ b/runtime/doc/windows.txt @@ -1,4 +1,4 @@ -*windows.txt* For Vim version 7.0c. Last change: 2006 Mar 11 +*windows.txt* For Vim version 7.0c. Last change: 2006 Apr 01 VIM REFERENCE MANUAL by Bram Moolenaar @@ -33,7 +33,7 @@ compile time} disabled at compile time} ============================================================================== -1. Introduction *windows-intro* +1. Introduction *windows-intro* *window* A window is a viewport onto a buffer. You can use multiple windows on one buffer, or several windows on different buffers. @@ -618,13 +618,15 @@ can also get to them with the buffer list commands, like ":bnext". The |argument-list| is set, like with the |:next| command. The purpose of this command is that it can be used from a program that wants Vim to edit another file, e.g., a debugger. + When using the |:tab| modifier each argument is opened in a + tab page. The last window is used if it's empty. {only available when compiled with the +gui feature} ============================================================================== 8. Do a command in all buffers or windows *list-repeat* *:windo* -:windo[!] {cmd} Execute {cmd} in each window. +:windo {cmd} Execute {cmd} in each window. It works like doing this: > CTRL-W t :{cmd} |