Diff to HTML by rtfpessoa

Files changed (4) hide show
  1. runtime/doc/autocmd.txt +5 -0
  2. runtime/doc/filetype.txt +19 -1
  3. runtime/doc/options.txt +15 -14
  4. runtime/doc/version9.txt +2 -1
runtime/doc/autocmd.txt CHANGED
@@ -387,6 +387,7 @@ Name triggered by ~
387
  |TabNew| after creating a new tab page
388
  |WinClosed| after closing a window
389
  |TabClosed| after closing a tab page
 
390
  |WinEnter| after entering another window
391
  |WinLeave| before leaving a window
392
  |TabEnter| after entering another tab page
@@ -1232,6 +1233,10 @@ Syntax When the 'syntax' option has been set. The
1232
  See |:syn-on|.
1233
  *TabClosed*
1234
  TabClosed After closing a tab page.
 
 
 
 
1235
  *TabEnter*
1236
  TabEnter Just after entering a tab page. |tab-page|
1237
  After triggering the WinEnter and before
387
  |TabNew| after creating a new tab page
388
  |WinClosed| after closing a window
389
  |TabClosed| after closing a tab page
390
+ |TabClosedPre| before closing a tab page
391
  |WinEnter| after entering another window
392
  |WinLeave| before leaving a window
393
  |TabEnter| after entering another tab page
1233
  See |:syn-on|.
1234
  *TabClosed*
1235
  TabClosed After closing a tab page.
1236
+ *TabClosedPre*
1237
+ TabClosedPre Before closing a tab page. The window layout
1238
+ is locked, thus opening and closing of windows
1239
+ is prohibited.
1240
  *TabEnter*
1241
  TabEnter Just after entering a tab page. |tab-page|
1242
  After triggering the WinEnter and before
runtime/doc/filetype.txt CHANGED
@@ -1,4 +1,4 @@
1
- *filetype.txt* For Vim version 9.1. Last change: 2025 Mar 10
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
@@ -640,6 +640,24 @@ One command, :DiffGitCached, is provided to show a diff of the current commit
640
  in the preview window. It is equivalent to calling "git diff --cached" plus
641
  any arguments given to the command.
642
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
643
 
644
  GO *ft-go-plugin*
645
 
1
+ *filetype.txt* For Vim version 9.1. Last change: 2025 Mar 13
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
640
  in the preview window. It is equivalent to calling "git diff --cached" plus
641
  any arguments given to the command.
642
 
643
+ GIT REBASE *ft-gitrebase-plugin*
644
+
645
+ The gitrebase filetype defines the following buffer-local commands, to help
646
+ with interactive `git rebase`: >
647
+
648
+ :Drop " to discard this commit
649
+ :Edit " to stop for editing this commit
650
+ :Fixup " to squash (but discard the message) into the previous one
651
+ :Pick " to pick this commit (the cursor is on)
652
+ :Reword " to pick this commit, but change the commit message
653
+ :Squash " to squash this commit into the previous one
654
+
655
+ In addition, the following comamnd can be used to cycle between the different
656
+ possibilities: >
657
+
658
+ :Cycle " to cycle between the previous commands
659
+ <
660
+ For details, see `git-rebase --help`.
661
 
662
  GO *ft-go-plugin*
663
 
runtime/doc/options.txt CHANGED
@@ -1,4 +1,4 @@
1
- *options.txt* For Vim version 9.1. Last change: 2025 Mar 12
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
@@ -2107,23 +2107,24 @@ A jump table for the options with a short description can be found at |Q_op|.
2107
  *'completefuzzycollect'* *'cfc'*
2108
  'completefuzzycollect' 'cfc' string (default: empty)
2109
  global
2110
- A comma-separated list of option enables fuzzy collection for specific
2111
- |ins-completion| modes, affecting how items are gathered during
2112
- completion. When set, fuzzy matching is used to find completion
2113
- candidates instead of the standard prefix-based matching. This option
2114
- can contain the following values are:
2115
 
2116
- keyword keywords in the current file |i_CTRL-X_CTRL-N|
2117
- keywords with the ".", "w", "b", "u", "U" and
2118
- "k{dict}" flags in 'complete'. |i_CTRL-N| |i_CTRL-P|
 
2119
 
2120
- files file names |i_CTRL-X_CTRL-F|
2121
 
2122
- whole_line whole lines |i_CTRL-X_CTRL-L|
2123
 
2124
- When used with 'completeopt' "longest" option, fuzzy collection can
2125
- identify the longest common string among the best fuzzy matches and
2126
- automatically insert it.
2127
 
2128
  *'completeitemalign'* *'cia'*
2129
  'completeitemalign' 'cia' string (default: "abbr,kind,menu")
1
+ *options.txt* For Vim version 9.1. Last change: 2025 Mar 13
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
2107
  *'completefuzzycollect'* *'cfc'*
2108
  'completefuzzycollect' 'cfc' string (default: empty)
2109
  global
2110
+ A comma-separated list of strings to enable fuzzy collection for
2111
+ specific |ins-completion| modes, affecting how matches are gathered
2112
+ during completion. For specified modes, fuzzy matching is used to
2113
+ find completion candidates instead of the standard prefix-based
2114
+ matching. This option can contain the following values:
2115
 
2116
+ keyword keywords in the current file |i_CTRL-X_CTRL-N|
2117
+ keywords with flags ".", "w", |i_CTRL-N| |i_CTRL-P|
2118
+ "b", "u", "U" and "k{dict}" in 'complete'
2119
+ keywords in 'dictionary' |i_CTRL-X_CTRL-K|
2120
 
2121
+ files file names |i_CTRL-X_CTRL-F|
2122
 
2123
+ whole_line whole lines |i_CTRL-X_CTRL-L|
2124
 
2125
+ When used the 'completeopt' "longest" option value, fuzzy collection
2126
+ can identify the longest common string among the best fuzzy matches
2127
+ and insert it automatically.
2128
 
2129
  *'completeitemalign'* *'cia'*
2130
  'completeitemalign' 'cia' string (default: "abbr,kind,menu")
runtime/doc/version9.txt CHANGED
@@ -1,4 +1,4 @@
1
- *version9.txt* For Vim version 9.1. Last change: 2025 Mar 06
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
@@ -41687,6 +41687,7 @@ Autocommands: ~
41687
  |CursorMovedC| after the cursor was moved in the command-line
41688
  |KeyInputPre| before processing any key event in any mode
41689
  |SessionWritePost| after writing the session file |:mksession|
 
41690
  |TermResponseAll| after the terminal response to |t_RV| and others is
41691
  received
41692
  |WinNewPre| before creating a new window
1
+ *version9.txt* For Vim version 9.1. Last change: 2025 Mar 13
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
41687
  |CursorMovedC| after the cursor was moved in the command-line
41688
  |KeyInputPre| before processing any key event in any mode
41689
  |SessionWritePost| after writing the session file |:mksession|
41690
+ |TabClosedPre| before closing a |tabpage|.
41691
  |TermResponseAll| after the terminal response to |t_RV| and others is
41692
  received
41693
  |WinNewPre| before creating a new window