Skip to content

Commit 75c5385

Browse files
committed
Merge remote-tracking branch 'vim/master'
2 parents 26de876 + 9ed7d34 commit 75c5385

18 files changed

Lines changed: 1029 additions & 947 deletions

runtime/autoload/filetype.vim

Lines changed: 741 additions & 0 deletions
Large diffs are not rendered by default.

runtime/doc/gui.txt

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*gui.txt* For Vim version 8.0. Last change: 2017 Sep 23
1+
*gui.txt* For Vim version 8.0. Last change: 2017 Nov 09
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -499,6 +499,17 @@ in the menu (which can take a bit of time to load). If you want to have all
499499
filetypes already present at startup, add: >
500500
:let do_syntax_sel_menu = 1
501501
502+
The following menuitems show all available color schemes, keymaps and compiler
503+
settings:
504+
Edit > Color Scheme ~
505+
Edit > Keymap ~
506+
Tools > Set Compiler ~
507+
However, they can also take a bit of time to load, because they search all
508+
related files from the directories in 'runtimepath'. Therefore they are
509+
loaded lazily (by the |CursorHold| event), or you can also load them manually.
510+
If you want to have all these items already present at startup, add: >
511+
:let do_no_lazyload_menus = 1
512+
502513
Note that the menu.vim is sourced when `:syntax on` or `:filetype on` is
503514
executed or after your .vimrc file is sourced. This means that the 'encoding'
504515
option and the language of messages (`:language messages`) must be set before

runtime/doc/if_pyth.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -715,6 +715,8 @@ To facilitate bi-directional interface, you can use |pyeval()| and |py3eval()|
715715
functions to evaluate Python expressions and pass their values to Vim script.
716716
|pyxeval()| is also available.
717717

718+
The Python value "None" is converted to v:none.
719+
718720
==============================================================================
719721
9. Dynamic loading *python-dynamic*
720722

runtime/doc/options.txt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4062,7 +4062,13 @@ A jump table for the options with a short description can be found at |Q_op|.
40624062
removing it after the GUI has started has no effect.
40634063
*'go-F'*
40644064
'F' Add a footer. Only for Motif. See |gui-footer|.
4065-
4065+
*'go-k'*
4066+
'k' Keep the GUI window size when adding/removing a scrollbar, or
4067+
toolbar, tabline, etc. Instead, the behavior is similar to
4068+
when the window is maximized and will adjust 'lines' and
4069+
'columns' to fit to the window. Without the 'k' flag Vim will
4070+
try to keep 'lines' and 'columns the same when adding and
4071+
removing GUI components.
40664072

40674073
*'guipty'* *'noguipty'*
40684074
'guipty' boolean (default on)

0 commit comments

Comments
 (0)