Update runtime files.
diff --git a/runtime/doc/autocmd.txt b/runtime/doc/autocmd.txt
index 087e31a..6480d72 100644
--- a/runtime/doc/autocmd.txt
+++ b/runtime/doc/autocmd.txt
@@ -1,4 +1,4 @@
-*autocmd.txt* For Vim version 8.1. Last change: 2019 Jan 19
+*autocmd.txt* For Vim version 8.1. Last change: 2019 Mar 13
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -621,6 +621,8 @@
Not triggered when there is typeahead or when
an operator is pending.
For an example see |match-parens|.
+ Note: This can not be skipped with
+ `:noautocmd`.
Careful: This is triggered very often, don't
do anything that the user does not expect or
that is slow.
@@ -1024,6 +1026,8 @@
was defined).
Not triggered when there is typeahead or when
an operator is pending.
+ Note: This can not be skipped with
+ `:noautocmd`.
Careful: This is triggered very often, don't
do anything that the user does not expect or
that is slow.
@@ -1465,8 +1469,8 @@
instead of ":q!".
*autocmd-nested* *E218*
-By default, autocommands do not nest. If you use ":e" or ":w" in an
-autocommand, Vim does not execute the BufRead and BufWrite autocommands for
+By default, autocommands do not nest. For example, if you use ":e" or ":w" in
+an autocommand, Vim does not execute the BufRead and BufWrite autocommands for
those commands. If you do want this, use the "nested" flag for those commands
in which you want nesting. For example: >
:autocmd FileChangedShell *.c nested e!
@@ -1612,5 +1616,8 @@
This will write the file without triggering the autocommands defined by the
gzip plugin.
+Note that some autocommands are not triggered right away, but only later.
+This specifically applies to |CursorMoved| and |TextChanged|.
+
vim:tw=78:ts=8:noet:ft=help:norl:
diff --git a/runtime/doc/diff.txt b/runtime/doc/diff.txt
index 6670f45..6b638fa 100644
--- a/runtime/doc/diff.txt
+++ b/runtime/doc/diff.txt
@@ -1,4 +1,4 @@
-*diff.txt* For Vim version 8.1. Last change: 2017 Oct 03
+*diff.txt* For Vim version 8.1. Last change: 2019 Feb 27
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -179,8 +179,8 @@
need another buffer. This command is useful: >
command DiffOrig vert new | set bt=nofile | r ++edit # | 0d_
\ | diffthis | wincmd p | diffthis
-(this is in |vimrc_example.vim|). Use ":DiffOrig" to see the differences
-between the current buffer and the file it was loaded from.
+(this is in |defaults.vim|). Use ":DiffOrig" to see the differences between
+the current buffer and the file it was loaded from.
A buffer that is unloaded cannot be used for the diff. But it does work for
hidden buffers. You can use ":hide" to close a window without unloading the
diff --git a/runtime/doc/index.txt b/runtime/doc/index.txt
index 005bdae..2406a27 100644
--- a/runtime/doc/index.txt
+++ b/runtime/doc/index.txt
@@ -1,4 +1,4 @@
-*index.txt* For Vim version 8.1. Last change: 2019 Feb 22
+*index.txt* For Vim version 8.1. Last change: 2019 Mar 17
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -544,10 +544,8 @@
|CTRL-W_CTRL-]| CTRL-W CTRL-] same as "CTRL-W ]"
|CTRL-W_CTRL-^| CTRL-W CTRL-^ same as "CTRL-W ^"
|CTRL-W_CTRL-_| CTRL-W CTRL-_ same as "CTRL-W _"
-|CTRL-W_quote| CTRL-W " terminal window: paste register
|CTRL-W_+| CTRL-W + increase current window height N lines
|CTRL-W_-| CTRL-W - decrease current window height N lines
-|CTRL-W_.| CTRL-W . terminal window: type CTRL-W
|CTRL-W_:| CTRL-W : same as |:|, edit a command line
|CTRL-W_<| CTRL-W < decrease current window width N columns
|CTRL-W_=| CTRL-W = make all windows the same height & width
@@ -556,7 +554,6 @@
|CTRL-W_J| CTRL-W J move current window to the very bottom
|CTRL-W_K| CTRL-W K move current window to the very top
|CTRL-W_L| CTRL-W L move current window to the far right
-|CTRL-W_N| CTRL-W N terminal window: go to Terminal Normal mode
|CTRL-W_P| CTRL-W P go to preview window
|CTRL-W_R| CTRL-W R rotate windows upwards N times
|CTRL-W_S| CTRL-W S same as "CTRL-W s"
@@ -586,6 +583,8 @@
|CTRL-W_gF| CTRL-W g F edit file name under the cursor in a new
tab page and jump to the line number
following the file name.
+|CTRL-W_gt| CTRL-W g t same as `gt`: go to next tab page
+|CTRL-W_gT| CTRL-W g T same as `gT`: go to previous tab page
|CTRL-W_h| CTRL-W h go to Nth left window (stop at first window)
|CTRL-W_i| CTRL-W i split window and jump to declaration of
identifier under the cursor
@@ -875,7 +874,7 @@
These can be used after an operator, but before a {motion} has been entered.
-tag char action in Insert mode ~
+tag char action in Operator-pending mode ~
-----------------------------------------------------------------------
|o_v| v force operator to work characterwise
|o_V| V force operator to work linewise
@@ -1003,7 +1002,7 @@
"Completion" below refers to context-sensitive completion. It will complete
file names, tags, commands etc. as appropriate.
-tag command action in Command-line editing mode ~
+tag command action in Command-line editing mode ~
------------------------------------------------------------------------------
CTRL-@ not used
|c_CTRL-A| CTRL-A do completion on the pattern in front of the
@@ -1100,16 +1099,19 @@
a terminal window. Switch to Terminal-Normal mode to use them.
This assumes 'termwinkey' is not set.
-tag char action in Insert mode ~
+tag char action in Terminal-Job mode ~
-----------------------------------------------------------------------
|t_CTRL-\_CTRL-N| CTRL-\ CTRL-N switch to Terminal-Normal mode
-|CTRL-W_N| CTRL-W N switch to Terminal-Normal mode
-|CTRL-W_:| CTRL-W : enter an Ex command
-|CTRL-W_.| CTRL-W . type CTRL-W in the terminal
+|t_CTRL-W_N| CTRL-W N switch to Terminal-Normal mode
+|t_CTRL-W_:| CTRL-W : enter an Ex command
+|t_CTRL-W_.| CTRL-W . type CTRL-W in the terminal
CTRL-W CTRL-\ send a CTRL-\ to the job in the terminal
-|CTRL-W_quote| CTRL-W " {0-9a-z"%#*:=}
+|t_CTRL-W_quote| CTRL-W " {0-9a-z"%#*:=}
paste register in the terminal
|t_CTRL-W_CTRL-C| CTRL-W CTRL-C forcefully ends the job
+|t_CTRL-W_CTRL-W| CTRL-W CTRL-W move focus to the next window
+|t_CTRL-W_gt| CTRL-W gt go to next tabpage, same as `gt`
+|t_CTRL-W_gT| CTRL-W gT go to previous tabpage, same as `gT`
You found it, Arthur! *holy-grail* *:smile*
@@ -1120,7 +1122,7 @@
mentioning any arguments. The optional part of the command name is inside [].
The commands are sorted on the non-optional part of their name.
-tag command action ~
+tag command action ~
------------------------------------------------------------------------------
|:!| :! filter lines or execute an external command
|:!!| :!! repeat last ":!" command
diff --git a/runtime/doc/motion.txt b/runtime/doc/motion.txt
index 77ec53f..7ebdee6 100644
--- a/runtime/doc/motion.txt
+++ b/runtime/doc/motion.txt
@@ -1,4 +1,4 @@
-*motion.txt* For Vim version 8.1. Last change: 2018 Dec 27
+*motion.txt* For Vim version 8.1. Last change: 2019 Mar 02
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -320,7 +320,7 @@
G Goto line [count], default last line, on the first
non-blank character |linewise|. If 'startofline' not
set, keep the same column.
- G is a one of |jump-motions|.
+ G is one of the |jump-motions|.
*<C-End>*
<C-End> Goto line [count], default last line, on the last
@@ -1021,7 +1021,7 @@
A "jump" is a command that normally moves the cursor several lines away. If
you make the cursor "jump" the position of the cursor before the jump is
-remembered. You can return to that position with the "''" and "``" command,
+remembered. You can return to that position with the "''" and "``" commands,
unless the line containing that position was changed or deleted. The
following commands are "jump" commands: "'", "`", "G", "/", "?", "n", "N",
"%", "(", ")", "[[", "]]", "{", "}", ":s", ":tag", "L", "M", "H" and the
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index 3554e96..97dbb5a 100644
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -1,4 +1,4 @@
-*options.txt* For Vim version 8.1. Last change: 2019 Feb 19
+*options.txt* For Vim version 8.1. Last change: 2019 Mar 08
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -383,9 +383,9 @@
When the optional FALLBACK argument is present, a
later :setfiletype command will override the
- 'filetype'. This is to used for filetype detections
- that are just a guess. |did_filetype()| will return
- false after this command.
+ 'filetype'. This is to be used for filetype
+ detections that are just a guess. |did_filetype()|
+ will return false after this command.
{not in Vi}
diff --git a/runtime/doc/pi_netrw.txt b/runtime/doc/pi_netrw.txt
index 478338e..2b7e565 100644
--- a/runtime/doc/pi_netrw.txt
+++ b/runtime/doc/pi_netrw.txt
@@ -3504,7 +3504,7 @@
- Click "Add..."
- Set External Editor (adjust path as needed, include
the quotes and !.! at the end):
- "c:\Program Files\Vim\vim70\gvim.exe" !.!
+ "c:\Program Files\Vim\vim81\gvim.exe" !.!
- Check that the filetype in the box below is
{asterisk}.{asterisk} (all files), or whatever types
you want (cec: change {asterisk} to * ; I had to
@@ -3754,8 +3754,8 @@
The <netrw.vim> script is typically installed on systems as something like:
>
- /usr/local/share/vim/vim7x/plugin/netrwPlugin.vim
- /usr/local/share/vim/vim7x/autoload/netrw.vim
+ /usr/local/share/vim/vim8x/plugin/netrwPlugin.vim
+ /usr/local/share/vim/vim8x/autoload/netrw.vim
(see output of :echo &rtp)
<
which is loaded automatically at startup (assuming :set nocp). If you
diff --git a/runtime/doc/spell.txt b/runtime/doc/spell.txt
index cee9e01..c7c83aa 100644
--- a/runtime/doc/spell.txt
+++ b/runtime/doc/spell.txt
@@ -312,25 +312,25 @@
spell file is used.
For example, with these values:
- 'runtimepath' is "~/.vim,/usr/share/vim70,~/.vim/after"
+ 'runtimepath' is "~/.vim,/usr/share/vim81,~/.vim/after"
'encoding' is "iso-8859-2"
'spelllang' is "pl"
Vim will look for:
1. ~/.vim/spell/pl.iso-8859-2.spl
-2. /usr/share/vim70/spell/pl.iso-8859-2.spl
+2. /usr/share/vim81/spell/pl.iso-8859-2.spl
3. ~/.vim/spell/pl.iso-8859-2.add.spl
-4. /usr/share/vim70/spell/pl.iso-8859-2.add.spl
+4. /usr/share/vim81/spell/pl.iso-8859-2.add.spl
5. ~/.vim/after/spell/pl.iso-8859-2.add.spl
This assumes 1. is not found and 2. is found.
If 'encoding' is "latin1" Vim will look for:
1. ~/.vim/spell/pl.latin1.spl
-2. /usr/share/vim70/spell/pl.latin1.spl
+2. /usr/share/vim81/spell/pl.latin1.spl
3. ~/.vim/after/spell/pl.latin1.spl
4. ~/.vim/spell/pl.ascii.spl
-5. /usr/share/vim70/spell/pl.ascii.spl
+5. /usr/share/vim81/spell/pl.ascii.spl
6. ~/.vim/after/spell/pl.ascii.spl
This assumes none of them are found (Polish doesn't make sense when leaving
diff --git a/runtime/doc/tags b/runtime/doc/tags
index df34ced..a9df438 100644
--- a/runtime/doc/tags
+++ b/runtime/doc/tags
@@ -3645,7 +3645,6 @@
CTRL-W index.txt /*CTRL-W*
CTRL-W_+ windows.txt /*CTRL-W_+*
CTRL-W_- windows.txt /*CTRL-W_-*
-CTRL-W_. terminal.txt /*CTRL-W_.*
CTRL-W_: windows.txt /*CTRL-W_:*
CTRL-W_< windows.txt /*CTRL-W_<*
CTRL-W_<BS> windows.txt /*CTRL-W_<BS>*
@@ -3685,7 +3684,6 @@
CTRL-W_J windows.txt /*CTRL-W_J*
CTRL-W_K windows.txt /*CTRL-W_K*
CTRL-W_L windows.txt /*CTRL-W_L*
-CTRL-W_N terminal.txt /*CTRL-W_N*
CTRL-W_P windows.txt /*CTRL-W_P*
CTRL-W_R windows.txt /*CTRL-W_R*
CTRL-W_S windows.txt /*CTRL-W_S*
@@ -3700,9 +3698,11 @@
CTRL-W_d tagsrch.txt /*CTRL-W_d*
CTRL-W_f windows.txt /*CTRL-W_f*
CTRL-W_gF windows.txt /*CTRL-W_gF*
+CTRL-W_gT windows.txt /*CTRL-W_gT*
CTRL-W_g] windows.txt /*CTRL-W_g]*
CTRL-W_g_CTRL-] windows.txt /*CTRL-W_g_CTRL-]*
CTRL-W_gf windows.txt /*CTRL-W_gf*
+CTRL-W_gt windows.txt /*CTRL-W_gt*
CTRL-W_g} windows.txt /*CTRL-W_g}*
CTRL-W_h windows.txt /*CTRL-W_h*
CTRL-W_i tagsrch.txt /*CTRL-W_i*
@@ -3713,7 +3713,6 @@
CTRL-W_o windows.txt /*CTRL-W_o*
CTRL-W_p windows.txt /*CTRL-W_p*
CTRL-W_q windows.txt /*CTRL-W_q*
-CTRL-W_quote terminal.txt /*CTRL-W_quote*
CTRL-W_r windows.txt /*CTRL-W_r*
CTRL-W_s windows.txt /*CTRL-W_s*
CTRL-W_t windows.txt /*CTRL-W_t*
@@ -8251,6 +8250,7 @@
quickfix quickfix.txt /*quickfix*
quickfix-6 version6.txt /*quickfix-6*
quickfix-ID quickfix.txt /*quickfix-ID*
+quickfix-buffer quickfix.txt /*quickfix-buffer*
quickfix-changedtick quickfix.txt /*quickfix-changedtick*
quickfix-context quickfix.txt /*quickfix-context*
quickfix-directory-stack quickfix.txt /*quickfix-directory-stack*
@@ -8826,7 +8826,14 @@
t_BD term.txt /*t_BD*
t_BE term.txt /*t_BE*
t_CS term.txt /*t_CS*
+t_CTRL-W_. terminal.txt /*t_CTRL-W_.*
+t_CTRL-W_: terminal.txt /*t_CTRL-W_:*
t_CTRL-W_CTRL-C terminal.txt /*t_CTRL-W_CTRL-C*
+t_CTRL-W_CTRL-W terminal.txt /*t_CTRL-W_CTRL-W*
+t_CTRL-W_N terminal.txt /*t_CTRL-W_N*
+t_CTRL-W_gT terminal.txt /*t_CTRL-W_gT*
+t_CTRL-W_gt terminal.txt /*t_CTRL-W_gt*
+t_CTRL-W_quote terminal.txt /*t_CTRL-W_quote*
t_CTRL-\_CTRL-N terminal.txt /*t_CTRL-\\_CTRL-N*
t_CV term.txt /*t_CV*
t_Ce term.txt /*t_Ce*
diff --git a/runtime/doc/tagsrch.txt b/runtime/doc/tagsrch.txt
index 865fcb1..ef1e515 100644
--- a/runtime/doc/tagsrch.txt
+++ b/runtime/doc/tagsrch.txt
@@ -1,4 +1,4 @@
-*tagsrch.txt* For Vim version 8.1. Last change: 2019 Feb 13
+*tagsrch.txt* For Vim version 8.1. Last change: 2019 Feb 25
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -578,7 +578,7 @@
the bar) and ;" is used to have Vi ignore the rest of the
line. Example:
APP file.c call cursor(3, 4)|;" v
-
+
{field} .. A list of optional fields. Each field has the form:
<Tab>{fieldname}:{value}
diff --git a/runtime/doc/terminal.txt b/runtime/doc/terminal.txt
index 297f37a..006422d 100644
--- a/runtime/doc/terminal.txt
+++ b/runtime/doc/terminal.txt
@@ -1,4 +1,4 @@
-*terminal.txt* For Vim version 8.1. Last change: 2019 Feb 22
+*terminal.txt* For Vim version 8.1. Last change: 2019 Feb 25
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -66,22 +66,23 @@
the job. This uses a pty when possible. You can click outside of the
terminal window to move keyboard focus elsewhere.
+ *t_CTRL-W_CTRL-W* *t_CTRL-W_:*
CTRL-W can be used to navigate between windows and other CTRL-W commands, e.g.:
CTRL-W CTRL-W move focus to the next window
CTRL-W : enter an Ex command
See |CTRL-W| for more commands.
-Special in the terminal window: *CTRL-W_.* *CTRL-W_N*
+Special in the terminal window: *t_CTRL-W_.* *t_CTRL-W_N*
CTRL-W . send a CTRL-W to the job in the terminal
CTRL-W CTRL-\ send a CTRL-\ to the job in the terminal
CTRL-W N go to Terminal-Normal mode, see |Terminal-mode|
CTRL-\ CTRL-N go to Terminal-Normal mode, see |Terminal-mode|
- CTRL-W " {reg} paste register {reg} *CTRL-W_quote*
+ CTRL-W " {reg} paste register {reg} *t_CTRL-W_quote*
Also works with the = register to insert the result of
evaluating an expression.
CTRL-W CTRL-C ends the job, see below |t_CTRL-W_CTRL-C|
- CTRL-W gt go to next tabpage, same as `gt`
- CTRL-W gT go to previous tabpage, same as `gT`
+ CTRL-W gt go to next tabpage, same as `gt` *t_CTRL-W_gt*
+ CTRL-W gT go to previous tabpage, same as `gT` *t_CTRL-W_gT*
See option 'termwinkey' for specifying another key instead of CTRL-W that
will work like CTRL-W. However, typing 'termwinkey' twice sends 'termwinkey'
@@ -92,8 +93,8 @@
'termwinkey' . send 'termwinkey' to the job in the terminal
'termwinkey' CTRL-\ send a CTRL-\ to the job in the terminal
'termwinkey' N go to terminal Normal mode, see below
- 'termwinkey' CTRL-N same as CTRL-W N
- 'termwinkey' CTRL-C same as |t_CTRL-W_CTRL-C|
+ 'termwinkey' CTRL-N same as CTRL-W N |t_CTRL-W_N|
+ 'termwinkey' CTRL-C same as CTRL-W CTRL-C |t_CTRL-W_CTRL-C|
*t_CTRL-\_CTRL-N*
The special key combination CTRL-\ CTRL-N can be used to switch to Normal
mode, just like this works in any other mode.
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index bbba024..7f512ea 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -1,4 +1,4 @@
-*todo.txt* For Vim version 8.1. Last change: 2019 Feb 22
+*todo.txt* For Vim version 8.1. Last change: 2019 Mar 14
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -38,15 +38,16 @@
*known-bugs*
-------------------- Known bugs and current work -----------------------
-Check https://github.com/macvim-dev/macvim/issues/861.
->
-Patch to add farsi handling to arabic.c (Ali Gholami Rudi, 2009 May 2)
+Patch to add Farsi handling to arabic.c (Ali Gholami Rudi, 2009 May 2)
Added test, updates, June 23.
Updated for 7.4: http://litcave.rudi.ir/farsi_vim.diff
Remark from Ameretat Reith (2014 Oct 13) with patch on top.
+Updated patch from Ameretat Reith, 2019 Mar 1.
Timer test doesn't work on MS-Windows console, any way to make it work?
+Drop FEAT_TAG_ANYWHITE ? It should not be a compile time option.
+
'incsearch' with :s: (#3321)
- Get E20 when using command history to get "'<,'>s/a/b" and no Visual area
was set. (#3837)
@@ -113,6 +114,13 @@
- When 'encoding' is not utf-8, or the job is using another encoding, setup
conversions.
+Support for popup widows:
+- Use text properties to define highlighting.
+- Proposal on issue #4063
+
+Adding "10" to 'spellsuggest' causes spell suggestions to become very slow.
+(#4087)
+
Problem with Visual yank when 'linebreak' and 'showbreak' are set.
Patch with tests, but it's not clear how it is supposed to work. (tommm, 2018
Nov 17) Asked about this, Dec 22. Christian will have a look.
@@ -121,6 +129,14 @@
- _stat64 is not defined, need to use "struct stat" in vim.h
- WINVER conflict, should use 0x0600 by default?
+Patch for 'listchars' when there is a composing character on a space.
+How about when there is a double-width composing character on a space?
+(Yasuhiro Matsumoto, #4046)
+Test doesn't fail without patch?
+
+Patch to add ruby cflags. (#4050, fixes #1081)
+Needs modification.
+
Crash when mixing matchadd and substitute()? (Max Christian Pohle, 2018 May
13, #2910) Can't reproduce?
@@ -131,10 +147,6 @@
files that source the actual file. E.g. menu_da_de -> menu_da
Include part of #3242?
-Improvement for :terminal winpty/conpty option. Ozaki Kiichi, #3905
-
-Patch to avoid compiler warnings. (Yasuhiro Matsumoto, #3979)
-
When a terminal exit_cb closes the window, a following typed key is lost, if
it's in a mapping. (2018 Oct 6, #2302, #3522)
@@ -147,20 +159,40 @@
Internal diff doesn't handle binary file like external diff does. (Mike
Williams, 2018 Oct 30)
-Patch to fix that dosinstall still has buffer overflow problems. (Yasuhiro
-Matsumoto, #4002)
-
Problem with :tlmenu: Detach item added with all modes? Issue #3563.
-Patch to reduce amount of memory used by functions that keep reference.
-(ichizok, #3961)
+Bug: script written with "-W scriptout" contains Key codes, while the script
+read with "-s scriptin" expects escape codes. Probably "scriptout" needs to
+be adjusted. (Daniel Steinberg, 2019 Feb 24, #4041)
+
+Patch to move insert-expand code to insexpand.c. (Yegappan Lakshmanan, #4044)
+
+Patch for larger icons in installer. (#978) Still not good.
+
+Patch on issue #3964 to let sign column stop at the last buffer line.
+(Christian Brabandt, 2019 Feb 24)
Patch to use wide font functions. (Ken Takata, 2019 Feb 18, #4000)
+Patch on #4073, Andy Massimino. Is this a real problem?
+
+Bug: "vipgw" does not put cursor back where it belongs. (Jason Franklin, 2019
+Mar 5)
+
+Patch to add blob2str() and str2blob(). (Yasuhiro Matsumoto, #4049)
+Make docs clearer. Is it symmetric?
+
When using a timer callback vgetc_busy is reset, allowing for using input().
But in a channel callback this does not happen. We need to do something
similar to check_due_timer(). Also see #3809.
+Using "5gj" starting inside a closed fold does not work on screen lines but on
+text lines. (Julius Hulsmann, #4095)
+
+Add "-once" to ":autocmd". Also add "-nested" as an alias for "nested".
+(Justin M. Keyes, #4100) Syntax of -once may be strange. ++once and ++nested
+is better?
+
C syntax: {} inside () causes following {} to be highlighted as error.
(Michalis Giannakidis, 2006 Jun 1)
@@ -170,6 +202,8 @@
Check: __attribute__((format(printf, on semsg() and siemsg(). Where was this
added?
+Patch to remove some unneeded {}. (Hirohito Higashi, #3982)
+
Make balloon_show() work outside of 'balloonexpr'? Users expect it to work:
#2948. (related to #1512?)
On Win32 it stops showing, because showState is already ShS_SHOWING.
@@ -181,6 +215,8 @@
2018 Sep 14)
Another request: #3811.
+Patch for autoconf to add -fPIC for Fedora. (#4047)
+
Height of quickfix window is not retained with vertical splits. (Lifepillar,
2018 Aug 24, #2998)
Patch on the issue by Hongbo Liu, 2019 Feb 19 #4013
@@ -200,11 +236,17 @@
Patch to make vim_getenv() work with wide API. (Ken Takata, #4008)
+How to make (async) complete function depending on completion type?
+Patch on #4083 to do this with an autocommand. Probably want something else,
+like 'ominfunc'.
+
Patch to add equal field to complete items. (#3887)
When using exclusive selection and vi" that fails, cursor moves to the left.
Cursor should not move. (#4024)
+Patch to fix handling long line in tags file. #4051, #4084 (Andy Massimino)
+
Patch to fix that executable() may fail on very long filename in MS-Windows.
(Ken Takata, 2016 Feb 1, update 2018 Oct 7, update 2019 Feb 19)
Now in pull request #4015.
@@ -273,8 +315,7 @@
#3405) Introduced by 8.0.1517, which was fixing another memory access error.
(Sep 8)
-Patch to add complete_mode(). Shougo - #3866. Alternate patch by Hirohito
-Higashi, 2019 Jan 27, included now?
+Patch to add complete_info Shougo - #3866. Ready to include.
Patch to make winnr() return the window above/below/beside a window.
(Yegappan Lakshmanan, #3993)
@@ -290,7 +331,7 @@
when possible. (Dylan Lloyd, #3973)
Tag stack is incorrect after CTRL-T and then :tag. (Andy Massimino, 2019 Feb
-12, #3944) With Patch for a solution. Needs a test.
+12, #3944) With Patch for a solution (Feb 23). Needs a test.
Patch to implement 'diffref' option. (#3535)
Easier to use a 'diffmaster' option, is the extra complexity needed?
@@ -442,9 +483,6 @@
Also reproduced by Benjamin Doherty, 2018 Oct 4.
Simpler way: Ken Takata, Oct 6.
-Window size is wrong when using quickfix window. (Lifepillar, 2018 Aug 24,
-#2999)
-
Add more testing of the GTK GUI.
- gtk_test_widget_click() can be used to simulate a click in a widget.
@@ -452,11 +490,6 @@
- Test_setbufvar_options()
- Test_exit_callback_interval()
-When using CTRL-W CR in the quickfix window, the jumplist in the opened window
-is cleared, to avoid going back to the list of errors buffer (would have two
-windows with it). Can we just remove the jump list entries for the quickfix
-buffer?
-
Patch to be able to use hex numbers with :digraph. (Lcd, 2015 Sep 6)
Update Sep 7. Update by Christian Brabandt, 2015 Sep 8, 2016 Feb 1.
Patch to be able to disable default digraphs (incomplete) (Eric Pruitt, 2018
@@ -512,9 +545,6 @@
":au * * command" should not be allowed, only use * for event when listing or
deleting autocmds, not when adding them.
-Quickfix window height is not kept with a vertical split. (Lifepillar, 2018
-Jun 10, #2998)
-
Alternative manpager.vim. (Enno, 2018 Jan 5, #2529)
Delete all the specific stuff for the Borland compiler? (#3374)
@@ -866,9 +896,6 @@
buffer is not deleted when using the session file. (#1393)
Should add the buffer in hidden state.
-When an item in the quickfix list has a file name that does not exist, behave
-like the item was not a match for :cnext.
-
Wrong diff highlighting with three files. (2016 Oct 20, #1186)
Also get E749 on exit.
Another example in #1309
@@ -974,10 +1001,6 @@
Window resizing with 'winfixheight': With a vertical split the height changes
anyway. (Tommy allen, 2017 Feb 21, #1502)
-When adding an item to a new quickfix list make ":cnext" jump to that item.
-Make a difference being at the first item and not having used :cnext at all.
-(Afanasiy Fet, 2017 Jan 3)
-
Invalid behavior with NULL list. (Nikolai Pavlov, #768)
E.g. deepcopy(test_null_list())
@@ -1168,9 +1191,6 @@
Second problem in #966: ins_compl_add_tv() uses get_dict_string() multiple
times, overwrites the one buffer. (Nikolay Pavlov, 2016 Aug 5)
-This does not work: :set cscopequickfix=a-
-(Linewi, 2015 Jul 12, #914)
-
Possibly wrong value for seq_cur. (Florent Fayolle, 2016 May 15, #806)
Filetype plugin for awk. (Doug Kearns, 2016 Sep 5)
@@ -2571,8 +2591,6 @@
but when compiling further tests -liconv is added without the -L argument,
that may fail (e.g., sizeof(int)). (Blaine, 2007 Aug 21)
-When opening quickfix window, disable spell checking?
-
Problem with ".add" files when using two languages and restarting Vim. (Raul
Coronado, 2008 Oct 30)
@@ -2635,7 +2653,7 @@
Dos uninstal may delete vim.bat from the wrong directory (e.g., when someone
makes his own wrapper). Add a magic string with the version number to the
.bat file and check for it in the uninstaller. E.g.
- # uninstall key: vim7.3*
+ # uninstall key: vim8.1*
Changes for Win32 makefile. (Mike Williams, 2007 Jan 22, Alexei Alexandrov,
2007 Feb 8)
@@ -2916,9 +2934,6 @@
Is it allowed that 'backupext' is empty? Problems when backup is in same dir
as original file? If it's OK don't compare with 'patchmode'. (Thierry Closen)
-Patch for supporting count before CR in quickfix window. (AOYAMA Shotaro, 2007
-Jan 1)
-
Patch for adding ":lscscope". (Navdeep Parhar, 2007 Apr 26; update 2008 Apr
23)
@@ -3071,8 +3086,6 @@
+ 1", but that's ugly.
7 Add patch from Benoit Cerrina to integrate Vim and Perl functions
better. Now also works for Ruby (2001 Nov 10)
-- Patch from Herculano de Lima Einloft Neto for better formatting of the
- quickfix window (2004 dec 2)
7 When 'rightleft' is set, the search pattern should be displayed right
to left as well? See patch of Dec 26. (Nadim Shaikli)
8 Option to lock all used memory so that it doesn't get swapped to disk
@@ -3090,6 +3103,35 @@
and GTK by degreneir (nov 10 and nov 18).
- Patch for "paranoid mode" by Kevin Collins, March 7. Needs much more work.
+Quickfix/Location List:
+- Window size is wrong when using quickfix window. (Lifepillar, 2018 Aug 24,
+ #2999)
+- When using CTRL-W CR in the quickfix window, the jumplist in the opened
+ window is cleared, to avoid going back to the list of errors buffer (would
+ have two windows with it). Can we just remove the jump list entries for
+ the quickfix buffer?
+- Quickfix window height is not kept with a vertical split. (Lifepillar,
+ 2018 Jun 10, #2998)
+- When an item in the quickfix list has a file name that does not exist,
+ behave like the item was not a match for :cnext.
+- When adding an item to a new quickfix list make ":cnext" jump to that
+ item. Make a difference being at the first item and not having used
+ :cnext at all. (Afanasiy Fet, 2017 Jan 3)
+- This does not work: :set cscopequickfix=a-
+ (Linewi, 2015 Jul 12, #914)
+- When opening quickfix window, disable spell checking?
+- Patch for supporting count before CR in quickfix window. (AOYAMA Shotaro,
+ 2007 Jan 1)
+- Patch from Herculano de Lima Einloft Neto for better formatting of the
+ quickfix window (2004 dec 2)
+- Amiga: When using quickfix with the Manx compiler we only get the first 25
+ errors. How do we get the rest?
+8 The quickfix file is read without conversion, thus in 'encoding'. Add an
+ option to specify the encoding of the errorfile and convert it. Also for
+ ":grep" and ":helpgrep".
+ More generic solution: support a filter (e.g., by calling a function).
+7 Add a command that goes back to the position from before jumping to the
+ first quickfix location. ":cbefore"?
Vi incompatibility:
- Try new POSIX tests, made after my comments. (Geoff Clare, 2005 April 7)
@@ -3732,8 +3774,6 @@
- In zsh, "gvim&" changes the terminal settings. This is a zsh problem.
(Jennings)
- Problem with HPterm under X: old contents of window is lost (Cosentino).
-- Amiga: When using quickfix with the Manx compiler we only get the first 25
- errors. How do we get the rest?
- Amiga: The ":cq" command does not always abort the Manx compiler. Why?
- Linux: A file with protection r--rw-rw- is seen readonly for others. The
access() function in GNU libc is probably wrong.
@@ -4066,10 +4106,6 @@
8 Add an item in 'fileencodings' to check the first line of an XML file for
the encoding. <?xml version="1.0" encoding="UTF-8"?> Or "charset=UTF-8"?
For HTML look for "charset=utf-8".
-8 The quickfix file is read without conversion, thus in 'encoding'. Add an
- option to specify the encoding of the errorfile and convert it. Also for
- ":grep" and ":helpgrep".
- More generic solution: support a filter (e.g., by calling a function).
8 When a file was converted from 'fileencoding' to 'encoding', a tag search
should also do this on the search pattern. (Andrzej M. Ostruszka)
8 When filtering changes the encoding 'fileencoding' may not work. E.g.,
@@ -5877,8 +5913,6 @@
from the 'makeprg'?
- Add %b to 'errorformat': buffer number. (Yegappan Lakshmanan / Suresh
Govindachar)
-7 Add a command that goes back to the position from before jumping to the
- first quickfix location. ":cbefore"?
7 Allow a window not to have a statusline. Makes it possible to use a
window as a buffer-tab selection.
8 Allow non-active windows to have a different statusline. (Yakov Lerner)
diff --git a/runtime/doc/usr_05.txt b/runtime/doc/usr_05.txt
index 9694efb..10623fd 100644
--- a/runtime/doc/usr_05.txt
+++ b/runtime/doc/usr_05.txt
@@ -1,4 +1,4 @@
-*usr_05.txt* For Vim version 8.1. Last change: 2019 Jan 26
+*usr_05.txt* For Vim version 8.1. Last change: 2019 Feb 27
VIM USER MANUAL - by Bram Moolenaar
@@ -85,7 +85,7 @@
>
" Get the defaults that most users want.
source $VIMRUNTIME/defaults.vim
->
+
This loads the "defaults.vim" file in the $VIMRUNTIME directory. This sets up
Vim for how most users like it. If you are one of the few that don't, then
comment out this line. The commands are explained below:
@@ -164,13 +164,13 @@
if exists('skip_defaults_vim')
finish
endif
->
+
Loading defaults.vim can be disabled with this command: >
let skip_defaults_vim = 1
This has to be done in the system vimrc file. See |system-vimrc|. If you
have a user vimrc this is not needed, since defaults.vim will not be loaded
automatically.
->
+
>
set nocompatible
@@ -191,8 +191,8 @@
Keep 200 commands and 200 search patterns in the history. Use another number
if you want to remember fewer or more lines. See 'history'.
->
+>
set ruler
Always display the current cursor position in the lower right corner of the
@@ -257,7 +257,7 @@
>
inoremap <C-U> <C-G>u<C-U>
->
+
CTRL-U in insert mode deletes all entered text in the current line. Use
CTRL-G u to first break undo, so that you can undo CTRL-U after inserting a
line break. Revert with ":iunmap <C-U>".
@@ -325,7 +325,7 @@
\ | wincmd p | diffthis
This adds the ":DiffOrig" command. Use this in a modified buffer to see the
-differences with the file it was loaded from. See |diff|.
+differences with the file it was loaded from. See |diff| and |:DiffOrig|.
>
set nolangremap
diff --git a/runtime/doc/version8.txt b/runtime/doc/version8.txt
index 50ebf33..3590db5 100644
--- a/runtime/doc/version8.txt
+++ b/runtime/doc/version8.txt
@@ -2378,7 +2378,7 @@
Files: src/config.mk.in, src/po/Makefile
Patch 7.4.323
-Problem: Substitute() with zero width pattern breaks multi-byte character.
+Problem: substitute() with zero width pattern breaks multi-byte character.
Solution: Take multi-byte character size into account. (Yukihiro Nakadaira)
Files: src/eval.c src/testdir/test69.in, src/testdir/test69.ok
@@ -20311,7 +20311,7 @@
Files: src/buffer.c
Patch 8.0.0936
-Problem: Mode() returns wrong value for a terminal window.
+Problem: mode() returns wrong value for a terminal window.
Solution: Return 't' when typed keys go to a job.
Files: src/evalfunc.c, src/testdir/test_terminal.vim
@@ -20697,7 +20697,7 @@
Files: src/channel.c
Patch 8.0.1004
-Problem: Matchstrpos() without a match returns too many items.
+Problem: matchstrpos() without a match returns too many items.
Solution: Also remove the second item when the position is beyond the end of
the string. (Hirohito Higashi) Use an enum for the type.
Files: src/evalfunc.c, src/testdir/test_match.vim
@@ -22544,7 +22544,7 @@
src/testdir/test_search.vim
Patch 8.0.1305
-Problem: Writefile() never calls fsync().
+Problem: writefile() never calls fsync().
Solution: Follow the 'fsync' option with override to enable or disable.
Files: src/fileio.c, src/evalfunc.c, runtime/doc/eval.txt, src/globals.h,
src/testdir/test_writefile.vim
@@ -22732,7 +22732,7 @@
Files: src/vim.h, src/window.c
Patch 8.0.1335
-Problem: Writefile() using fsync() may give an error for a device.
+Problem: writefile() using fsync() may give an error for a device.
(Yasuhiro Matsumoto)
Solution: Ignore fsync() failing. (closes #2373)
Files: src/evalfunc.c
@@ -23618,7 +23618,7 @@
src/testdir/test_popup.vim, src/testdir/test_edit.vim
Patch 8.0.1483
-Problem: Searchpair() might return an invalid value on timeout.
+Problem: searchpair() might return an invalid value on timeout.
Solution: When the second search times out, do not accept a match from the
first search. (Daniel Hahler, closes #2552)
Files: src/search.c
@@ -23722,7 +23722,7 @@
src/testdir/Make_all.mak, src/testdir/test_jumplist.vim
Patch 8.0.1498 (after 8.0.1497)
-Problem: Getjumplist() returns duplicate entries. (lacygoill)
+Problem: getjumplist() returns duplicate entries. (lacygoill)
Solution: Call cleanup_jumplist(). (Yegappan Lakshmanan)
Files: src/evalfunc.c, src/mark.c, src/proto/mark.pro,
src/testdir/test_jumplist.vim
@@ -23842,7 +23842,7 @@
Files: src/ex_docmd.c, src/testdir/test_eval_stuff.vim
Patch 8.0.1519
-Problem: Getchangelist() does not use argument as bufname().
+Problem: getchangelist() does not use argument as bufname().
Solution: Use get_buf_tv(). (Yegappan Lakshmanan, closes #2641)
Files: src/evalfunc.c, src/testdir/test_changelist.vim
diff --git a/runtime/doc/visual.txt b/runtime/doc/visual.txt
index 0b012c6..f63a08d 100644
--- a/runtime/doc/visual.txt
+++ b/runtime/doc/visual.txt
@@ -1,4 +1,4 @@
-*visual.txt* For Vim version 8.1. Last change: 2019 Feb 19
+*visual.txt* For Vim version 8.1. Last change: 2019 Feb 25
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -118,7 +118,7 @@
E.g., "dgn" deletes the text of the next match.
If Visual mode is active, extends the selection
until the end of the next match.
- Note: Unlinke `n` the search direction does not depend
+ Note: Unlike `n` the search direction does not depend
on the previous search command.
*gN* *v_gN*
diff --git a/runtime/doc/windows.txt b/runtime/doc/windows.txt
index 90a1789..0b96115 100644
--- a/runtime/doc/windows.txt
+++ b/runtime/doc/windows.txt
@@ -1,4 +1,4 @@
-*windows.txt* For Vim version 8.1. Last change: 2018 Apr 24
+*windows.txt* For Vim version 8.1. Last change: 2019 Mar 17
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -842,6 +842,12 @@
{not available when the |+file_in_path| feature was disabled
at compile time}
+CTRL-W gt *CTRL-W_gt*
+ Go to next tab page, same as `gt`.
+
+CTRL-W gT *CTRL-W_gT*
+ Go to previous tab page, same as `gT`.
+
Also see |CTRL-W_CTRL-I|: open window for an included file that includes
the keyword under the cursor.
diff --git a/runtime/lang/menu_da.latin1.vim b/runtime/lang/menu_da.latin1.vim
index 3187c9e..b258495 100644
--- a/runtime/lang/menu_da.latin1.vim
+++ b/runtime/lang/menu_da.latin1.vim
@@ -1,3 +1,3 @@
" Menu Translations: Danish for iso-8859-1 encoding
-source <sfile>:p:h/menu_da.utf-8.vim
\ No newline at end of file
+source <sfile>:p:h/menu_da.utf-8.vim
diff --git a/runtime/tutor/tutor.cs b/runtime/tutor/tutor.cs
index 6cbd520..d8e170d 100644
--- a/runtime/tutor/tutor.cs
+++ b/runtime/tutor/tutor.cs
@@ -1,5 +1,5 @@
===============================================================================
-= V í t e j t e v t u t o r i a l u V I M - Verze 1.5 =
+= V í t e j t e v t u t o r i a l u V I M - Verze 1.5 =
===============================================================================
Vim je velmi výkonný editor, který má pøíli¹ mnoho pøíkazù na to, aby
@@ -18,7 +18,7 @@
nauèení. Pokud si jen ète¹ text, pøíkazy zapomene¹!
Nyní se pøesvìdète, ¾e Caps-Lock NENÍ stlaèený a nìkolikrát stisknìte
- klávesu j aby se kurzor posunul natolik, ¾e lekce 1.1 zaplní celou
+ klávesu j aby se kurzor posunul natolik, ¾e lekce 1.1 zaplní celou
obrazovku.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lekce 1.1: POHYB KURZORU
diff --git a/runtime/tutor/tutor.cs.cp1250 b/runtime/tutor/tutor.cs.cp1250
index 0d05bfb..9266cd5 100644
--- a/runtime/tutor/tutor.cs.cp1250
+++ b/runtime/tutor/tutor.cs.cp1250
@@ -1,5 +1,5 @@
===============================================================================
-= V í t e j t e v t u t o r i a l u V I M - Verze 1.5 =
+= V í t e j t e v t u t o r i a l u V I M - Verze 1.5 =
===============================================================================
Vim je velmi výkonný editor, který má pøíli mnoho pøíkazù na to, aby
@@ -18,7 +18,7 @@
nauèení. Pokud si jen ète text, pøíkazy zapomene!
Nyní se pøesvìdète, e Caps-Lock NENÍ stlaèený a nìkolikrát stisknìte
- klávesu j aby se kurzor posunul natolik, e lekce 1.1 zaplní celou
+ klávesu j aby se kurzor posunul natolik, e lekce 1.1 zaplní celou
obrazovku.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lekce 1.1: POHYB KURZORU
diff --git a/runtime/tutor/tutor.cs.utf-8 b/runtime/tutor/tutor.cs.utf-8
index 97a1953..58ad83d 100644
--- a/runtime/tutor/tutor.cs.utf-8
+++ b/runtime/tutor/tutor.cs.utf-8
@@ -1,5 +1,5 @@
===============================================================================
-= V í t e j t e v t u t o r i a l u V I M - Verze 1.5 =
+= V í t e j t e v t u t o r i a l u V I M - Verze 1.5 =
===============================================================================
Vim je velmi výkonný editor, který má příliš mnoho příkazů na to, aby
@@ -18,7 +18,7 @@
naučení. Pokud si jen čteš text, příkazy zapomeneš!
Nyní se přesvědčte, že Caps-Lock NENÍ stlačený a několikrát stiskněte
- klávesu j aby se kurzor posunul natolik, že lekce 1.1 zaplní celou
+ klávesu j aby se kurzor posunul natolik, že lekce 1.1 zaplní celou
obrazovku.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lekce 1.1: POHYB KURZORU
diff --git a/runtime/tutor/tutor.ja.euc b/runtime/tutor/tutor.ja.euc
index 0054b32..b899805 100644
--- a/runtime/tutor/tutor.ja.euc
+++ b/runtime/tutor/tutor.ja.euc
@@ -846,7 +846,7 @@
6. ":set xxx" ¤È¥¿¥¤¥×¤¹¤ë¤È¥ª¥×¥·¥ç¥ó "xxx" ¤¬ÀßÄꤵ¤ì¤ë¡£
'ic' 'ignorecase' ¸¡º÷»þ¤ËÂçʸ»ú¾®Ê¸»ú¤Î¶èÊ̤·¤Ê¤¤
'is' 'incsearch' ¸¡º÷¥Õ¥ì¡¼¥º¤ËÉôʬ¥Þ¥Ã¥Á¤·¤Æ¤¤¤ëÉôʬ¤òɽ¼¨¤¹¤ë
- 'hls' 'hlsearch' ¥Þ¥Ã¥Á¤¹¤ë¤¹¤Ù¤ò¶¯Ä´É½¼¨¤¹¤ë
+ 'hls' 'hlsearch' ¥Þ¥Ã¥Á¤¹¤ë¤¹¤Ù¤Æ¤ò¶¯Ä´É½¼¨¤¹¤ë
Ť¤Êý¡¢Ã»¤¤Êý¡¢¤É¤Á¤é¤Î¥ª¥×¥·¥ç¥ó̾¤Ç¤â»ÈÍѤǤ¤Þ¤¹¡£
7. ¥ª¥×¥·¥ç¥ó¤ò̵¸ú¤Ë¤¹¤ë¤Ë¤Ï "no" ¤òÉÕÍ¿¤·¤Þ¤¹: :set noic
@@ -969,8 +969,9 @@
Modified for Vim by Bram Moolenaar.
- ÆüËܸìÌõ ¾¾ËÜ ÂÙ¹° <mattn.jp@gmail.com>
- ´Æ½¤ ¼²¬ ÂÀϺ <koron.kaoriya@gmail.com>
+ ÆüËܸìÌõ ¾¾ËÜ ÂÙ¹° <mattn.jp@gmail.com>
+ vim-jp¥Á¡¼¥à <https://github.com/vim-jp/lang-ja>
+ ´Æ½¤ ¼²¬ ÂÀϺ <koron.kaoriya@gmail.com>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
vi:set ts=8 sts=4 sw=4 tw=78:
diff --git a/runtime/tutor/tutor.ja.sjis b/runtime/tutor/tutor.ja.sjis
index c722819..0562a00 100644
--- a/runtime/tutor/tutor.ja.sjis
+++ b/runtime/tutor/tutor.ja.sjis
@@ -846,7 +846,7 @@
6. ":set xxx" Æ^Cv·éÆIvV "xxx" ªÝè³êéB
'ic' 'ignorecase' õÉ嶬¶ÌæÊµÈ¢
'is' 'incsearch' õt[Yɪ}b`µÄ¢éªð\¦·é
- 'hls' 'hlsearch' }b`·é·×ð²\¦·é
+ 'hls' 'hlsearch' }b`·é·×Äð²\¦·é
·¢ûAZ¢ûAÇ¿çÌIvV¼ÅàgpūܷB
7. IvVð³øÉ·éÉÍ "no" ðt^µÜ·: :set noic
@@ -969,8 +969,9 @@
Modified for Vim by Bram Moolenaar.
- ú{êó ¼{ ×O <mattn.jp@gmail.com>
- ÄC ºª ¾Y <koron.kaoriya@gmail.com>
+ ú{êó ¼{ ×O <mattn.jp@gmail.com>
+ vim-jp`[ <https://github.com/vim-jp/lang-ja>
+ ÄC ºª ¾Y <koron.kaoriya@gmail.com>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
vi:set ts=8 sts=4 sw=4 tw=78:
diff --git a/runtime/tutor/tutor.ja.utf-8 b/runtime/tutor/tutor.ja.utf-8
index a1bb905..a604d9a 100644
--- a/runtime/tutor/tutor.ja.utf-8
+++ b/runtime/tutor/tutor.ja.utf-8
@@ -846,7 +846,7 @@
6. ":set xxx" とタイプするとオプション "xxx" が設定される。
'ic' 'ignorecase' 検索時に大文字小文字の区別しない
'is' 'incsearch' 検索フレーズに部分マッチしている部分を表示する
- 'hls' 'hlsearch' マッチするすべを強調表示する
+ 'hls' 'hlsearch' マッチするすべてを強調表示する
長い方、短い方、どちらのオプション名でも使用できます。
7. オプションを無効にするには "no" を付与します: :set noic
@@ -969,8 +969,9 @@
Modified for Vim by Bram Moolenaar.
- 日本語訳 松本 泰弘 <mattn.jp@gmail.com>
- 監修 村岡 太郎 <koron.kaoriya@gmail.com>
+ 日本語訳 松本 泰弘 <mattn.jp@gmail.com>
+ vim-jpチーム <https://github.com/vim-jp/lang-ja>
+ 監修 村岡 太郎 <koron.kaoriya@gmail.com>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
vi:set ts=8 sts=4 sw=4 tw=78: