summaryrefslogtreecommitdiff
path: root/runtime
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.0.0321: errors when trying to use scripts in tiny versionv8.0.0321Bram Moolenaar2017-02-092-15/+33
| | | | | | Problem: When using the tiny version trying to load the matchit plugin gives an error. On MS-Windows some default mappings fail. Solution: Add a check if the command used is available. (Christian Brabandt)
* patch 8.0.0296: bracketed paste can only append, not insertv8.0.0296Bram Moolenaar2017-02-021-2/+7
| | | | | Problem: Bracketed paste can only append, not insert. Solution: When the cursor is in the first column insert the text.
* patch 8.0.0283: mode() does not indicate Insert mode completionv8.0.0283Bram Moolenaar2017-02-011-1/+5
| | | | | | | Problem: The return value of mode() does not indicate that completion is active in Replace and Insert mode. (Zhen-Huan (Kenny) Hu) Solution: Add "c" or "x" for two kinds of completion. (Yegappan Lakshmanan, closes #1397) Test some more modes.
* Update runtime files.Bram Moolenaar2017-01-2817-178/+290
|
* patch 8.0.0255: setpos() does not use the buffer argument for all marksv8.0.0255Bram Moolenaar2017-01-281-4/+6
| | | | | | | Problem: When calling setpos() with a buffer argument it often is ignored. (Matthew Malcomson) Solution: Make the buffer argument work for all marks local to a buffer. (neovim #5713) Add more tests.
* patch 8.0.0251: not easy to select Python 2 or 3v8.0.0251Bram Moolenaar2017-01-286-1/+114
| | | | | | Problem: It is not so easy to write a script that works with both Python 2 and Python 3, even when the Python code works with both. Solution: Add 'pyxversion', :pyx, etc. (Marc Weber, Ken Takata)
* patch 8.0.0210: no support for bracketed pastev8.0.0210Bram Moolenaar2017-01-211-0/+18
| | | | | | Problem: Vim does not support bracketed paste, as implemented by xterm and other terminals. Solution: Add t_BE, t_BD, t_PS and t_PE.
* Update runtime files.Bram Moolenaar2017-01-1714-59/+55
|
* patch 8.0.0179: cannot have a local value for 'formatprg'v8.0.0179Bram Moolenaar2017-01-141-1/+1
| | | | | | Problem: 'formatprg' is a global option but the value may depend on the type of buffer. (Sung Pae) Solution: Make 'formatprg' global-local. (closes #1380)
* patch 8.0.0171: JS style JSON does not support single quotesv8.0.0171Bram Moolenaar2017-01-111-0/+1
| | | | | Problem: JS style JSON does not support single quotes. Solution: Allow for single quotes. (Yasuhiro Matsumoto, closes #1371)
* Updated runtime files.Bram Moolenaar2017-01-1010-167/+348
|
* patch 8.0.0151: passing buffer content to system() is clumsyv8.0.0151Bram Moolenaar2017-01-081-1/+5
| | | | | | Problem: To pass buffer content to system() and systemlist() one has to first create a string or list. Solution: Allow passing a buffer number. (LemonBoy, closes #1240)
* Updated runtime files.Bram Moolenaar2017-01-0216-58/+149
|
* patch 8.0.0118v8.0.0118Bram Moolenaar2016-12-0112-55/+75
| | | | | Problem: "make proto" adds extra function prototype. Solution: Add #ifdef.
* Updated runtime files.Bram Moolenaar2016-12-011-0/+26
|
* patch 8.0.0111v8.0.0111Bram Moolenaar2016-12-011-2/+5
| | | | | Problem: The :history command is not tested. Solution: Add tests. (Dominique Pelle)
* patch 8.0.0107v8.0.0107Bram Moolenaar2016-12-011-1/+7
| | | | | | | Problem: When reading channel output in a timer, messages may go missing. (Skywind) Solution: Add the "drop" option. Write error messages in the channel log. Don't have ch_canread() check for the channel being open.
* patch 8.0.0105v8.0.0105Bram Moolenaar2016-11-292-10/+32
| | | | | | Problem: When using ch_read() with zero timeout, can't tell the difference between reading an empty line and nothing available. Solution: Add ch_canread().
* patch 8.0.0096v8.0.0096Bram Moolenaar2016-11-242-0/+6
| | | | | | Problem: When the input or output is not a tty Vim appears to hang. Solution: Add the --ttyfail argument. Also add the "ttyin" and "ttyout" features to be able to check in Vim script.
* Updated runtime files.Bram Moolenaar2016-11-1713-37/+526
|
* Updated runtime files.Bram Moolenaar2016-11-066-10/+25
|
* patch 8.0.0062v8.0.0062Bram Moolenaar2016-11-041-1/+2
| | | | | Problem: No digraph for HORIZONTAL ELLIPSIS. Solution: Use ",.". (Hans Ginzel, closes #1226)
* Runtime file updates.Bram Moolenaar2016-10-3010-65/+96
|
* Updated runtime files.Bram Moolenaar2016-10-278-116/+235
|
* Updated runtime files.Bram Moolenaar2016-10-2317-83/+515
|
* patch 8.0.0034v8.0.0034Bram Moolenaar2016-10-152-0/+3
| | | | | Problem: No completion for ":messages". Solution: Complete "clear" argument. (Hirohito Higashi)
* Updated runtime files.Bram Moolenaar2016-10-125-17/+15
|
* patch 8.0.0029v8.0.0029Bram Moolenaar2016-10-123-173/+24
| | | | | | Problem: Code for MS-Windows is complicated because of the exceptions for old systems. Solution: Drop support for MS-Windows older than Windows XP. (Ken Takata)
* Updated runtime files.Bram Moolenaar2016-10-1111-88/+161
|
* patch 8.0.0020v8.0.0020Bram Moolenaar2016-10-022-7/+9
| | | | | Problem: The regexp engines are not reentrant. Solution: Add regexec_T and save/restore the state when needed.
* Updated runtime files.Bram Moolenaar2016-10-0120-719/+1513
|
* patch 8.0.0017v8.0.0017Bram Moolenaar2016-09-271-1/+2
| | | | | | Problem: Cannot get the number of the current quickfix or location list. Solution: Use the current list if "nr" in "what" is zero. (Yegappan Lakshmanan) Remove debug command from test.
* patch 8.0.0015v8.0.0015Bram Moolenaar2016-09-261-5/+12
| | | | | | Problem: Can't tell which part of a channel has "buffered" status. Solution: Add an optional argument to ch_status(). Let ch_info() also return "buffered" for out_status and err_status.
* Updated runtime files.Bram Moolenaar2016-09-2514-41/+42
|
* Updated runtime files.Bram Moolenaar2016-09-2211-32/+80
|
* Updated runtime files.Bram Moolenaar2016-09-1612-71/+170
|
* patch 8.0.0002v8.0.0002Bram Moolenaar2016-09-121-2/+2
| | | | | Problem: The netrw plugin does not work. Solution: Make it accept version 8.0.
* Vim 8.0 releasev8.0.0000Bram Moolenaar2016-09-12132-142/+147
|
* patch 7.4.2365v7.4.2365Bram Moolenaar2016-09-121-0/+5
| | | | | Problem: Needless line break. Confusing directory name. Solution: Remove line break. Prepend "../" to "tools".
* A few more runtime updates.Bram Moolenaar2016-09-125-11/+46
|
* Updated runtime files, Japanese translations.Bram Moolenaar2016-09-119-86/+191
|
* Updated runtime filesBram Moolenaar2016-09-0811-41/+495
|
* patch 7.4.2344v7.4.2344Bram Moolenaar2016-09-071-2/+14
| | | | | | | Problem: The "Reading from channel output..." message can be unwanted. Appending to a buffer leaves an empty first line behind. Solution: Add the "out_msg" and "err_msg" options. Writing the first line overwrites the first, empty line.
* Updated runtime files.Bram Moolenaar2016-09-0621-79/+106
|
* patch 7.4.2319v7.4.2319Bram Moolenaar2016-09-031-1/+7
| | | | | | Problem: No way for a system wide vimrc to stop loading defaults.vim. (Christian Hesse) Solution: Bail out of defaults.vim if skip_defaults_vim was set.
* patch 7.4.2298v7.4.2298Bram Moolenaar2016-09-012-2/+15
| | | | | Problem: It is not possible to close the "in" part of a channel. Solution: Add ch_close_in().
* Updated runtime files. Remove HiLink commands.Bram Moolenaar2016-08-31342-7991/+7331
|
* Updated runtime files. Remove version checks for Vim older than 6.0.Bram Moolenaar2016-08-30426-13616/+9966
|
* patch 7.4.2291v7.4.2291Bram Moolenaar2016-08-291-10/+14
| | | | | Problem: printf() handles floats wrong when there is a sign. Solution: Fix placing the sign. Add tests. (Dominique Pelle)
* Updated runtime files.Bram Moolenaar2016-08-285-37/+460
|