annotate runtime/autoload/README.txt @ 32826:7c4ad06d80ec v9.0.1726

patch 9.0.1726: incorrect heights in win_size_restore() Commit: https://github.com/vim/vim/commit/876f5fb570d8401aa4c58af4a5da91f10520aa9d Author: Sean Dewar <seandewar@users.noreply.github.com> Date: Thu Aug 17 22:40:05 2023 +0200 patch 9.0.1726: incorrect heights in win_size_restore() Problem: incorrect heights in win_size_restore() Solution: avoid restoring incorrect heights in win_size_restore() Changing 'showtabline' or 'cmdheight' in the cmdwin restores incorrect window heights after closing the cmdwin. This may produce a gap between the cmdline and the window above. Solution: restore window sizes only if the number of lines available for windows changed; subtract the rows of the tabline, cmdline and last window's statusline from 'lines' (other statuslines don't matter). closes: #12704 Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: Sean Dewar <seandewar@users.noreply.github.com>
author Christian Brabandt <cb@256bit.org>
date Thu, 17 Aug 2023 22:45:06 +0200
parents 927afe5f3c9d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
446
7472c565592a updated for version 7.0117
vimboss
parents:
diff changeset
1 The autoload directory is for standard Vim autoload scripts.
7472c565592a updated for version 7.0117
vimboss
parents:
diff changeset
2
7472c565592a updated for version 7.0117
vimboss
parents:
diff changeset
3 These are functions used by plugins and for general use. They will be loaded
7472c565592a updated for version 7.0117
vimboss
parents:
diff changeset
4 automatically when the function is invoked. See ":help autoload".
7472c565592a updated for version 7.0117
vimboss
parents:
diff changeset
5
7472c565592a updated for version 7.0117
vimboss
parents:
diff changeset
6 gzip.vim for editing compressed files
718
7b21554be7a1 updated for version 7.0219
vimboss
parents: 548
diff changeset
7 netrw*.vim browsing (remote) directories and editing remote files
548
f43150a669dc updated for version 7.0155
vimboss
parents: 513
diff changeset
8 tar.vim browsing tar files
f43150a669dc updated for version 7.0155
vimboss
parents: 513
diff changeset
9 zip.vim browsing zip files
718
7b21554be7a1 updated for version 7.0219
vimboss
parents: 548
diff changeset
10 paste.vim common code for mswin.vim, menu.vim and macmap.vim
7b21554be7a1 updated for version 7.0219
vimboss
parents: 548
diff changeset
11 spellfile.vim downloading of a missing spell file
513
6e2a7416d228 updated for version 7.0144
vimboss
parents: 446
diff changeset
12
718
7b21554be7a1 updated for version 7.0219
vimboss
parents: 548
diff changeset
13 Omni completion files:
548
f43150a669dc updated for version 7.0155
vimboss
parents: 513
diff changeset
14 ccomplete.vim C
f43150a669dc updated for version 7.0155
vimboss
parents: 513
diff changeset
15 csscomplete.vim HTML / CSS
f43150a669dc updated for version 7.0155
vimboss
parents: 513
diff changeset
16 htmlcomplete.vim HTML
718
7b21554be7a1 updated for version 7.0219
vimboss
parents: 548
diff changeset
17 javascriptcomplete.vim Javascript
7b21554be7a1 updated for version 7.0219
vimboss
parents: 548
diff changeset
18 phpcomplete.vim PHP
827
fd1b3406fd1c updated for version 7.0d02
vimboss
parents: 718
diff changeset
19 pythoncomplete.vim Python
830
927afe5f3c9d updated for version 7.0d05
vimboss
parents: 827
diff changeset
20 rubycomplete.vim Ruby
718
7b21554be7a1 updated for version 7.0219
vimboss
parents: 548
diff changeset
21 syntaxcomplete.vim from syntax highlighting
7b21554be7a1 updated for version 7.0219
vimboss
parents: 548
diff changeset
22 xmlcomplete.vim XML (uses files in the xml directory)