summaryrefslogtreecommitdiff
path: root/runtime
AgeCommit message (Collapse)Author
2015-12-05Updated runtime files.Bram Moolenaar
2015-12-03patch 7.4.956Bram Moolenaar
Problem: A few more file name extensions not recognized. Solution: Add .asciidoc, .bzl, .gradle, etc.
2015-12-03patch 7.4.955Bram Moolenaar
Problem: Vim doesn't recognize .pl6 and .pod6 files. Solution: Recognize them as perl6 and pod6. (Mike Eve, closes #511)
2015-12-03patch 7.4.951Bram Moolenaar
Problem: Sorting number strings does not work as expected. (Luc Hermitte) Solution: Add the 'N" argument to sort()
2015-11-30patch 7.4.945Bram Moolenaar
Problem: New style testing is incomplete. Solution: Add the runtest script to the list of distributed files. Add the new functions to the function overview. Rename the functions to match Vim function style. Move undolevels testing into a new style test script.
2015-11-29patch 7.4.944Bram Moolenaar
Problem: Writing tests for Vim script is hard. Solution: Add assertEqual(), assertFalse() and assertTrue() functions. Add the v:errors variable. Add the runtest script. Add a first new style test script.
2015-11-24Update runtime files.Bram Moolenaar
2015-11-24patch 7.4.941Bram Moolenaar
Problem: There is no way to ignore case only for tag searches. Solution: Add the 'tagcase' option. (Gary Johnson)
2015-11-19Update runtime files.Bram Moolenaar
2015-11-19patch 7.4.925Bram Moolenaar
Problem: User may yank or put using the register being recorded in. Solution: Add the recording register in the message. (Christian Brabandt, closes #470)
2015-11-10Updated runtime files.Bram Moolenaar
2015-11-10patch 7.4.920Bram Moolenaar
Problem: The rubydll option is not in the options window. Solution: Add the rubydll option.
2015-11-10patch 7.4.919Bram Moolenaar
Problem: The dll options are not in the options window. Solution: Add the dll options. And other fixes.
2015-11-10patch 7.4.918Bram Moolenaar
Problem: A digit in an option name has problems. Solution: Rename 'python3dll' to 'pythonthreedll'.
2015-11-10patch 7.4.913Bram Moolenaar
Problem: No utf-8 support for the hangul input feature. Solution: Add utf-8 support. (Namsh)
2015-11-02patch 7.4.907Bram Moolenaar
Problem: Libraries for dynamically loading interfaces can only be defined at compile time. Solution: Add options to specify the dll names. (Kazuki Sakamoto, closes #452)
2015-11-02Add files in patch 7.4.904 missing from commit.Bram Moolenaar
2015-11-01Updated runtime files.Bram Moolenaar
2015-10-30Update runtime files.Bram Moolenaar
2015-10-13Update runtime files.Bram Moolenaar
2015-09-25Update various runtime files.Bram Moolenaar
2015-09-08Update documentation and syntax files.Bram Moolenaar
2015-09-08patch 7.4.859Bram Moolenaar
Problem: Vim doesn't recognize all htmldjango files. Solution: Recognize a comment. (Daniel Hahler, PR #410)
2015-09-08patch 7.4.858Bram Moolenaar
Problem: It's a bit clumsy to execute a command on a list of matches. Solution: Add the ":ldo", ":lfdo", ":cdo" and ":cfdo" commands. (Yegappan Lakshmanan)
2015-09-01patch 7.4.852Bram Moolenaar
Problem: On MS-Windows console Vim uses ANSI APIs for keyboard input and console output, it cannot input/output Unicode characters. Solution: Use Unicode APIs for console I/O. (Ken Takata, Yasuhiro Matsumoto)
2015-09-01patch 7.4.849Bram Moolenaar
Problem: Moving the cursor in Insert mode starts new undo sequence. Solution: Add CTRL-G U to keep the undo sequence for the following cursor movement command. (Christian Brabandt)
2015-08-25Updated runtime files and Italian messages.Bram Moolenaar
2015-08-11Update runtime files.Bram Moolenaar
2015-08-11patch 7.4.813Bram Moolenaar
Problem: It is not possible to save and restore character search state. Solution: Add getcharsearch() and setcharsearch(). (James McCoy)
2015-07-22Correct optwin script, update PHP complete.Bram Moolenaar
2015-07-21Updated and new runtime files.Bram Moolenaar
2015-07-21patch 7.4.793Bram Moolenaar
Problem: Can't specify when not to ring the bell. Solution: Add the 'belloff' option. (Christian Brabandt)
2015-07-21patch 7.4.792Bram Moolenaar
Problem: Can only conceal text by defining syntax items. Solution: Use matchadd() to define concealing. (Christian Brabandt)
2015-07-21patch 7.4.791Bram Moolenaar
Problem: The buffer list can be very long. Solution: Add an argument to ":ls" to specify the type of buffer to list. (Marcin Szamotulski)
2015-07-17patch 7.4.786Bram Moolenaar
Problem: It is not possible for a plugin to adjust to a changed setting. Solution: Add the OptionSet autocommand event. (Christian Brabandt)
2015-07-17patch 7.4.785Bram Moolenaar
Problem: On some systems automatically adding the missing EOL causes problems. Setting 'binary' has too many side effects. Solution: Add the 'fixeol' option, default on. (Pavel Samarkin)
2015-07-10Updated runtime files.Bram Moolenaar
2015-07-10patch 7.4.775Bram Moolenaar
Problem: It is not possible to avoid using the first item of completion. Solution: Add the "noinsert" and "noselect" values to 'completeopt'. (Shougo Matsu)
2015-07-10patch 7.4.774Bram Moolenaar
Problem: When using the CompleteDone autocommand event it's difficult to get to the completed items. Solution: Add the v:completed_items variable. (Shougo Matsu)
2015-06-26Update help files.Bram Moolenaar
2015-06-25patch 7.4.755Bram Moolenaar
Problem: It is not easy to count the number of characters. Solution: Add the skipcc argument to strchars(). (Hirohito Higashi, Ken Takata)
2015-06-21patch 7.4.752Bram Moolenaar
Problem: Unicode 8.0 not supported. Solution: Update tables for Unicode 8.0. Avoid E36 when running the script. (James McCoy)
2015-06-19Add the logiPat plugin to the distribution.Bram Moolenaar
2015-06-19patch 7.4.742Bram Moolenaar
Problem: Cannot specify a vertical split when loading a buffer for a quickfix command. Solution: Add the "vsplit" value to 'switchbuf'. (Brook Hong)
2015-06-19Updated runtime files.Bram Moolenaar
2015-06-09Updated runtime files.Bram Moolenaar
2015-05-04patch 7.4.722Bram Moolenaar
Problem: 0x202f is not recognized as a non-breaking space character. Solution: Add 0x202f to the list. (Christian Brabandt)
2015-04-21patch 7.4.710Bram Moolenaar
Problem: It is not possible to make spaces visibible in list mode. Solution: Add the "space" item to 'listchars'. (David Bürgin, issue 350)
2015-04-21patch 7.4.709Bram Moolenaar
Problem: ":tabmove" does not work as documented. Solution: Make it work consistently. Update documentation and add tests. (Hirohito Higashi)
2015-04-15Remove local-additions entries from help.txt.Bram Moolenaar