comparison runtime/doc/windows.txt @ 9975:03fa8a51e9dc

commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Aug 26 19:52:37 2016 +0200 Updated runtime files. Add Scala files.
author Christian Brabandt <cb@256bit.org>
date Fri, 26 Aug 2016 20:00:12 +0200
parents 2b6654519a7c
children 9f48eab77d62
comparison
equal deleted inserted replaced
9974:cb480e05fb5f 9975:03fa8a51e9dc
1 *windows.txt* For Vim version 7.4. Last change: 2016 Aug 18 1 *windows.txt* For Vim version 7.4. Last change: 2016 Aug 23
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
73 Note: All CTRL-W commands can also be executed with |:wincmd|, for those 73 Note: All CTRL-W commands can also be executed with |:wincmd|, for those
74 places where a Normal mode command can't be used or is inconvenient. 74 places where a Normal mode command can't be used or is inconvenient.
75 75
76 The main Vim window can hold several split windows. There are also tab pages 76 The main Vim window can hold several split windows. There are also tab pages
77 |tab-page|, each of which can hold multiple windows. 77 |tab-page|, each of which can hold multiple windows.
78 *window-ID* 78 *window-ID* *winid* *windowid*
79 Each window has a unique identifier called the window ID. This identifier 79 Each window has a unique identifier called the window ID. This identifier
80 will not change within a Vim session. The |win_getid()| and |win_id2tabwin()| 80 will not change within a Vim session. The |win_getid()| and |win_id2tabwin()|
81 functions can be used to convert between the window/tab number and the 81 functions can be used to convert between the window/tab number and the
82 identifier. There is also the window number, which may change whenever 82 identifier. There is also the window number, which may change whenever
83 windows are opened or closed, see |winnr()|. 83 windows are opened or closed, see |winnr()|.
1040 # alternate buffer 1040 # alternate buffer
1041 Combining flags means they are "and"ed together, e.g.: 1041 Combining flags means they are "and"ed together, e.g.:
1042 h+ hidden buffers which are modified 1042 h+ hidden buffers which are modified
1043 a+ active buffers which are modified 1043 a+ active buffers which are modified
1044 1044
1045 When using |:filter| the pattern is matched against the
1046 displayed buffer name, e.g.: >
1047 filter /\.vim/ ls
1048 <
1045 *:bad* *:badd* 1049 *:bad* *:badd*
1046 :bad[d] [+lnum] {fname} 1050 :bad[d] [+lnum] {fname}
1047 Add file name {fname} to the buffer list, without loading it. 1051 Add file name {fname} to the buffer list, without loading it.
1048 If "lnum" is specified, the cursor will be positioned at that 1052 If "lnum" is specified, the cursor will be positioned at that
1049 line when the buffer is first entered. Note that other 1053 line when the buffer is first entered. Note that other