Am Donnerstag, 23. Oktober 2014 04:37:24 UTC+2 schrieb kmunet.ch: > Am Mittwoch, 22. Oktober 2014 22:33:46 UTC+2 schrieb Bram Moolenaar: > > Andi Hafner wrote: > > > > > I'm not sure if I'm right here as I'm not familiar with google groups in > > > general and therefore with this mailing list and how it's organized. > > > > > > So I followed the instructions on http://www.vim.org/develop.php and > > > send the proposed addition as diff file for approval. > > > > > > IMHO, even it's a quick reference it would be consistent also to mention > > > the commands for adjusting the window width and not only the ones for > > > adjusting their height. > > > > Thanks, I'll include that change. > > > > > Doing so, I also realized that there is no built in horizontal > > > equivalent to CTRL-W_= (make all windows equal height), i.e. a command > > > to make all windows equal width. Am I right or did I miss something? > > > (I'm speaking about internal commands, not about extensions, scripts > > > etc. I'm also aware about :set winfixwidth.) > > > > The quick reference doesn't mention that CTRL-W = also equalizes the > > width. > > > > > However it may be, thanks to all for the greatest editing language ever > > > seen and happy hacking ;-) > > > > -- > > Yah, well, we had to carve our electrons out of driftwood we'd > > find. In the winter. Uphill. Both ways. > > > > /// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\ > > /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ > > \\\ an exciting new programming language -- http://www.Zimbu.org /// > > \\\ help me help AIDS victims -- http://ICCF-Holland.org /// > > Hi Bram > > Thank you for your very fast response for this peace of cake. I'll consider > you on my wishlist for xmas...
___________________________________________________________________ I've tried to replace my initial patch with a refined one, no chance, either I'm too stupid to handle this web interface or it lacks some functionality ;-) So I attach the refined version here, considering the annotations made by others in this thread, i.e., as it is defined by :help CTRL-W_= -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
diff --git a/runtime/doc/quickref.txt b/runtime/doc/quickref.txt --- a/runtime/doc/quickref.txt +++ b/runtime/doc/quickref.txt @@ -1313,11 +1313,18 @@ |CTRL-W_R| CTRL-W R rotate windows upwards |CTRL-W_x| CTRL-W x exchange current window with next one -|CTRL-W_=| CTRL-W = make all windows equal height +|CTRL-W_=| CTRL-W = make all windows equal (height and + width) + |CTRL-W_-| CTRL-W - decrease current window height |CTRL-W_+| CTRL-W + increase current window height |CTRL-W__| CTRL-W _ set current window height (default: very high) + +|CTRL-W_<| CTRL-W < decrease current window width +|CTRL-W_>| CTRL-W > increase current window width +|CTRL-W_bar| CTRL-W | set current window width (default: + widest possible) ------------------------------------------------------------------------------ *Q_bu* Buffer list commands
