summaryrefslogtreecommitdiffstats
path: root/runtime
AgeCommit message (Collapse)Author
2016-12-01patch 8.0.0107v8.0.0107Bram Moolenaar
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.
2016-11-29patch 8.0.0105v8.0.0105Bram Moolenaar
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().
2016-11-24patch 8.0.0096v8.0.0096Bram Moolenaar
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.
2016-11-17Updated runtime files.Bram Moolenaar
2016-11-06Updated runtime files.Bram Moolenaar
2016-11-04patch 8.0.0062v8.0.0062Bram Moolenaar
Problem: No digraph for HORIZONTAL ELLIPSIS. Solution: Use ",.". (Hans Ginzel, closes #1226)
2016-10-30Runtime file updates.Bram Moolenaar
2016-10-27Updated runtime files.Bram Moolenaar
2016-10-23Updated runtime files.Bram Moolenaar
2016-10-15patch 8.0.0034v8.0.0034Bram Moolenaar
Problem: No completion for ":messages". Solution: Complete "clear" argument. (Hirohito Higashi)
2016-10-12Updated runtime files.Bram Moolenaar
2016-10-12patch 8.0.0029v8.0.0029Bram Moolenaar
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)
2016-10-11Updated runtime files.Bram Moolenaar
2016-10-02patch 8.0.0020v8.0.0020Bram Moolenaar
Problem: The regexp engines are not reentrant. Solution: Add regexec_T and save/restore the state when needed.
2016-10-01Updated runtime files.Bram Moolenaar
2016-09-27patch 8.0.0017v8.0.0017Bram Moolenaar
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.
2016-09-26patch 8.0.0015v8.0.0015Bram Moolenaar
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.
2016-09-25Updated runtime files.Bram Moolenaar
2016-09-22Updated runtime files.Bram Moolenaar
2016-09-16Updated runtime files.Bram Moolenaar
2016-09-12patch 8.0.0002v8.0.0002Bram Moolenaar
Problem: The netrw plugin does not work. Solution: Make it accept version 8.0.
2016-09-12Vim 8.0 releasev8.0.0000Bram Moolenaar
2016-09-12patch 7.4.2365v7.4.2365Bram Moolenaar
Problem: Needless line break. Confusing directory name. Solution: Remove line break. Prepend "../" to "tools".
2016-09-12A few more runtime updates.Bram Moolenaar
2016-09-11Updated runtime files, Japanese translations.Bram Moolenaar
2016-09-08Updated runtime filesBram Moolenaar
2016-09-07patch 7.4.2344v7.4.2344Bram Moolenaar
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.
2016-09-06Updated runtime files.Bram Moolenaar
2016-09-03patch 7.4.2319v7.4.2319Bram Moolenaar
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.
2016-09-01patch 7.4.2298v7.4.2298Bram Moolenaar
Problem: It is not possible to close the "in" part of a channel. Solution: Add ch_close_in().
2016-08-31Updated runtime files. Remove HiLink commands.Bram Moolenaar
2016-08-30Updated runtime files. Remove version checks for Vim older than 6.0.Bram Moolenaar
2016-08-29patch 7.4.2291v7.4.2291Bram Moolenaar
Problem: printf() handles floats wrong when there is a sign. Solution: Fix placing the sign. Add tests. (Dominique Pelle)
2016-08-28Updated runtime files.Bram Moolenaar
2016-08-28patch 7.4.2278v7.4.2278Bram Moolenaar
Problem: New users have no idea of the 'scrolloff' option. Solution: Set 'scrolloff' in defaults.vim.
2016-08-27Updated runtime files and translations.Bram Moolenaar
2016-08-27patch 7.4.2273v7.4.2273Bram Moolenaar
Problem: getwininfo() and getbufinfo() are inefficient. Solution: Do not make a copy of all window/buffer-local options. Make it possible to get them with gettabwinvar() or getbufvar().
2016-08-27patch 7.4.2268v7.4.2268Bram Moolenaar
Problem: Using CTRL-N and CTRL-P for incsearch shadows completion keys. Solution: Use CTRL-T and CTRL-G instead.
2016-08-26Updated runtime files. Add Scala files.Bram Moolenaar
2016-08-26patch 7.4.2259v7.4.2259Bram Moolenaar
Problem: With 'incsearch' can only see the next match. Solution: Make CTRL-N/CTRL-P move to the previous/next match. (Christian Brabandt)
2016-08-26patch 7.4.2258v7.4.2258Bram Moolenaar
Problem: Two JSON messages are sent without a separator. Solution: Separate messages with a NL. (closes #1001)
2016-08-24patch 7.4.2251v7.4.2251Bram Moolenaar
Problem: In rare cases diffing 4 buffers is not enough. Solution: Raise the limit to 8. (closes #1000)
2016-08-23patch 7.4.2244v7.4.2244Bram Moolenaar
Problem: Adding pattern to ":oldfiles" is not a generic solution. Solution: Add the ":filter /pat/ cmd" command modifier. Only works for some commands right now.
2016-08-21patch 7.4.2237v7.4.2237Bram Moolenaar
Problem: Can't use "." and "$" with ":tab". Solution: Support a range for ":tab". (Hirohito Higashi)
2016-08-21patch 7.4.2236v7.4.2236Bram Moolenaar
Problem: The 'langnoremap' option leads to double negatives. And it does not work for the last character of a mapping. Solution: Add 'langremap' with the opposite value. Keep 'langnoremap' for backwards compatibility. Make it work for the last character of a mapping. Make the test work.
2016-08-20patch 7.4.2232v7.4.2232Bram Moolenaar
Problem: The default ttimeoutlen is very long. Solution: Use "100". (Hirohito Higashi)
2016-08-20patch 7.4.2231v7.4.2231Bram Moolenaar
Problem: ":oldfiles" output is a very long list. Solution: Add a pattern argument. (Coot, closes #575)
2016-08-20patch 7.4.2230v7.4.2230Bram Moolenaar
Problem: There is no equivalent of 'smartcase' for a tag search. Solution: Add value "followscs" and "smart" to 'tagcase'. (Christian Brabandt, closes #712) Turn tagcase test into new style.
2016-08-18Updated runtime files.Bram Moolenaar
2016-08-18patch 7.4.2226v7.4.2226Bram Moolenaar
Problem: The field names used by getbufinfo(), gettabinfo() and getwininfo() are not consistent. Solution: Use bufnr, winnr and tabnr. (Yegappan Lakshmanan)