comparison runtime/doc/gui.txt @ 98:98435a8ddb09

updated for version 7.0038
author vimboss
date Fri, 14 Jan 2005 21:42:54 +0000
parents c75153d791d0
children 4707450c2b33
comparison
equal deleted inserted replaced
97:d4f3db33d782 98:98435a8ddb09
1 *gui.txt* For Vim version 7.0aa. Last change: 2004 Dec 29 1 *gui.txt* For Vim version 7.0aa. Last change: 2005 Jan 14
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
142 :!xwininfo -id $WINDOWID 142 :!xwininfo -id $WINDOWID
143 143
144 ============================================================================== 144 ==============================================================================
145 2. Scrollbars *gui-scrollbars* 145 2. Scrollbars *gui-scrollbars*
146 146
147 There are vertical scrollbars and a horizontal scrollbars. You may 147 There are vertical scrollbars and a horizontal scrollbar. You may
148 configure which ones appear with the 'guioptions' option. 148 configure which ones appear with the 'guioptions' option.
149 149
150 The interface looks like this (with ":set guioptions=mlrb"): 150 The interface looks like this (with ":set guioptions=mlrb"):
151 151
152 +------------------------------+ 152 +------------------------------+
201 scrollbar-thumb size is such that the text of the longest visible line may be 201 scrollbar-thumb size is such that the text of the longest visible line may be
202 scrolled as far as possible left and right. The cursor is moved when 202 scrolled as far as possible left and right. The cursor is moved when
203 necessary, it must remain on a visible character (unless 'virtualedit' is 203 necessary, it must remain on a visible character (unless 'virtualedit' is
204 set). 204 set).
205 205
206 Computing the length of the longest visible takes quite a bit of computation, 206 Computing the length of the longest visible line takes quite a bit of
207 and it has to be done every time something changes. If this takes too much 207 computation, and it has to be done every time something changes. If this
208 time or you don't like the cursor jumping to another line, include the 'h' 208 takes too much time or you don't like the cursor jumping to another line,
209 flag in 'guioptions'. Then the scrolling is limited by the text of the 209 include the 'h' flag in 'guioptions'. Then the scrolling is limited by the
210 current cursor line. 210 text of the current cursor line.
211 211
212 *athena-intellimouse* 212 *athena-intellimouse*
213 If you have an Intellimouse and an X server that supports using the wheel, 213 If you have an Intellimouse and an X server that supports using the wheel,
214 then you can use the wheel to scroll the text up and down in gvim. This works 214 then you can use the wheel to scroll the text up and down in gvim. This works
215 with XFree86 4.0 and later, and with some older versions when you add patches. 215 with XFree86 4.0 and later, and with some older versions when you add patches.