summaryrefslogtreecommitdiff
path: root/runtime
Commit message (Collapse)AuthorAgeFilesLines
* Update runtime files.Bram Moolenaar2017-03-1635-235/+485
|
* patch 8.0.0463: side effects from resetting 'compatible' in defaults.vimv8.0.0463Bram Moolenaar2017-03-161-2/+5
| | | | | | Problem: Resetting 'compatible' in defaults.vim has unexpected side effects. (David Fishburn) Solution: Only reset 'compatible' if it was set.
* patch 8.0.0440: not enough test coverage in Insert modev8.0.0440Bram Moolenaar2017-03-091-1/+1
| | | | | | Problem: Not enough test coverage in Insert mode. Solution: Add lots of tests. Add test_override(). (Christian Brabandt, closes #1521)
* patch 8.0.0431: 'cinoptions' cannot set indent for extern blockv8.0.0431Bram Moolenaar2017-03-081-1/+16
| | | | | Problem: 'cinoptions' cannot set indent for extern block. Solution: Add the "E" flag in 'cinoptions'. (Hirohito Higashi)
* patch 8.0.0427: 'makeencoding' missing from the options windowv8.0.0427Bram Moolenaar2017-03-061-1/+4
| | | | | Problem: 'makeencoding' missing from the options window. Solution: Add the entry.
* patch 8.0.0420: text garbled when the system encoding differs from 'encoding'v8.0.0420Bram Moolenaar2017-03-053-0/+41
| | | | | | Problem: When running :make the output may be in the system encoding, different from 'encoding'. Solution: Add the 'makeencoding' option. (Ken Takata)
* Runtime file updates.Bram Moolenaar2017-03-05190-895/+1089
|
* patch 8.0.0405: v:progpath may become invalid after :cdv8.0.0405Bram Moolenaar2017-03-041-2/+5
| | | | | Problem: v:progpath may become invalid after ":cd". Solution: Turn v:progpath into a full path if needed.
* patch 8.0.0396: 'balloonexpr' only works synchronouslyv8.0.0396Bram Moolenaar2017-03-011-6/+26
| | | | | Problem: 'balloonexpr' only works synchronously. Solution: Add balloon_show(). (Jusufadis Bakamovic, closes #1449)
* patch 8.0.0392: GUI test fails with Athena and Motifv8.0.0392Bram Moolenaar2017-03-011-0/+10
| | | | | | Problem: GUI test fails with Athena and Motif. Solution: Add test_ignore_error(). Use it to ignore the "failed to create input context" error.
* patch 8.0.0360: sometimes VimL is used instead of "Vim script"v8.0.0360Bram Moolenaar2017-02-235-14/+14
| | | | | Problem: Sometimes VimL is used, which is confusing. Solution: Consistently use "Vim script". (Hirohito Higashi)
* patch 8.0.0343: b:changedtick can be unlockedv8.0.0343Bram Moolenaar2017-02-201-2/+5
| | | | | | Problem: b:changedtick can be unlocked, even though it has no effect. (Nikolai Pavlov) Solution: Add a check and error E940. (closes #1496)
* Updated runtime files.Bram Moolenaar2017-02-1727-545/+741
|
* 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.