summaryrefslogtreecommitdiff
path: root/runtime/doc
Commit message (Collapse)AuthorAgeFilesLines
* patch 7.4.1126v7.4.1126Bram Moolenaar2016-01-171-6/+21
| | | | | | Problem: Can only get the directory of the current window. Solution: Add window and tab arguments to getcwd() and haslocaldir(). (Thinca, Hirohito Higashi)
* patch 7.4.1125v7.4.1125Bram Moolenaar2016-01-172-1/+14
| | | | | Problem: There is no perleval(). Solution: Add perleval(). (Damien)
* patch 7.4.1114v7.4.1114Bram Moolenaar2016-01-171-3/+4
| | | | | Problem: delete() does not work well with symbolic links. Solution: Recognize symbolik links.
* patch 7.4.1107v7.4.1107Bram Moolenaar2016-01-161-6/+20
| | | | | | Problem: Vim can create a directory but not delete it. Solution: Add an argument to delete() to make it possible to delete a directory, also recursively.
* patch 7.4.1104v7.4.1104Bram Moolenaar2016-01-161-0/+23
| | | | | | Problem: Various problems building with MzScheme/Racket. Solution: Make it work with new versions of Racket. (Yukihiro Nakadaira, Ken Takata)
* patch 7.4.1102v7.4.1102Bram Moolenaar2016-01-161-2/+30
| | | | | | Problem: Debugger has no stack backtrace support. Solution: Add "backtrace", "frame", "up" and "down" commands. (Alberto Fanjul, closes #433)
* Update runtime filesBram Moolenaar2016-01-157-100/+239
|
* patch 7.4.1096v7.4.1096Bram Moolenaar2016-01-151-0/+6
| | | | | | Problem: Need several lines to verify a command produces an error. Solution: Add assert_fails(). (suggested by Nikolay Pavlov) Make the quickfix alloc test actually work.
* patch 7.4.1092v7.4.1092Bram Moolenaar2016-01-151-9/+23
| | | | | | Problem: It is not simple to test for an exception and give a proper error message. Solution: Add assert_exception().
* Updated runtime files.Bram Moolenaar2016-01-107-39/+68
|
* patch 7.4.1070v7.4.1070Bram Moolenaar2016-01-093-5/+27
| | | | | Problem: The Tcl interface can't be loaded dynamically on Unix. Solution: Make it possible to load it dynamically. (Ken Takata)
* patch 7.4.1065v7.4.1065Bram Moolenaar2016-01-091-22/+25
| | | | | | Problem: Cannot use the "dll" options on MS-Windows. Solution: Support the options on all platforms. Use the built-in name as the default, so that it's clear what Vim is looking for.
* patch 7.4.1064v7.4.1064Bram Moolenaar2016-01-091-0/+8
| | | | | | Problem: When a spell file has single letter compounding creating suggestions takes an awful long time. Solution: Add th eNOCOMPOUNDSUGS flag.
* patch 7.4.1058v7.4.1058Bram Moolenaar2016-01-071-0/+9
| | | | | | Problem: It is not possible to test code that is only reached when memory allocation fails. Solution: Add the alloc_fail() function. Try it out with :vimgrep.
* patch 7.4.1042v7.4.1042Bram Moolenaar2016-01-033-2/+28
| | | | | | Problem: g-CTRL-G shows the word count, but there is no way to get the word count in a script. Solution: Add the wordcount() function. (Christian Brabandt)
* Updated runtime files.Bram Moolenaar2016-01-0310-123/+69
|
* patch 7.4.1037v7.4.1037Bram Moolenaar2016-01-021-4/+4
| | | | | | | Problem: Using "q!" when there is a modified hidden buffer does not unload the current buffer, resulting in the need to abandon it again. Solution: When using "q!" unload the current buffer when needed. (Yasuhiro Matsumoto, Hirohito Higashi)
* patch 7.4.1035v7.4.1035Bram Moolenaar2016-01-021-3/+4
| | | | | | Problem: An Ex range gets adjusted for folded lines even when the range is not using line numbers. Solution: Only adjust line numbers for folding. (Christian Brabandt)
* patch 7.4.1027v7.4.1027Bram Moolenaar2016-01-022-5/+17
| | | | | Problem: No support for binary numbers. Solution: Add "bin" to nrformats. (Jason Schulz)
* patch 7.4.1013v7.4.1013Bram Moolenaar2015-12-311-4/+4
| | | | | | | Problem: The local value of 'errorformat' is not used for ":lexpr" and ":cexpr". Solution: Use the local value if it exists. (Christian Brabandt) Adjust the help for this.
* patch 7.4.1008v7.4.1008Bram Moolenaar2015-12-311-211/+3
| | | | | Problem: The OS/2 code pollutes the source while nobody uses it these days. Solution: Drop the support for OS/2.
* Updated runtime files.Bram Moolenaar2015-12-299-65/+131
|
* patch 7.4.984v7.4.984Bram Moolenaar2015-12-281-7/+14
| | | | | | Problem: searchpos() always starts searching in the first column, which is not what some people expect. (Brett Stahlman) Solution: Add the 'z' flag: start at the specified column.
* Updated runtime files.Bram Moolenaar2015-12-055-41/+83
|
* patch 7.4.951v7.4.951Bram Moolenaar2015-12-031-0/+9
| | | | | Problem: Sorting number strings does not work as expected. (Luc Hermitte) Solution: Add the 'N" argument to sort()
* patch 7.4.945v7.4.945Bram Moolenaar2015-11-302-14/+25
| | | | | | | | 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.
* patch 7.4.944v7.4.944Bram Moolenaar2015-11-291-1/+38
| | | | | | | 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.
* Update runtime files.Bram Moolenaar2015-11-247-41/+42
|
* patch 7.4.941v7.4.941Bram Moolenaar2015-11-244-23/+43
| | | | | Problem: There is no way to ignore case only for tag searches. Solution: Add the 'tagcase' option. (Gary Johnson)
* Update runtime files.Bram Moolenaar2015-11-195-19/+33
|
* patch 7.4.925v7.4.925Bram Moolenaar2015-11-192-1/+8
| | | | | | Problem: User may yank or put using the register being recorded in. Solution: Add the recording register in the message. (Christian Brabandt, closes #470)
* Updated runtime files.Bram Moolenaar2015-11-108-42/+79
|
* patch 7.4.918v7.4.918Bram Moolenaar2015-11-101-2/+2
| | | | | Problem: A digit in an option name has problems. Solution: Rename 'python3dll' to 'pythonthreedll'.
* patch 7.4.913v7.4.913Bram Moolenaar2015-11-101-22/+29
| | | | | Problem: No utf-8 support for the hangul input feature. Solution: Add utf-8 support. (Namsh)
* patch 7.4.907v7.4.907Bram Moolenaar2015-11-025-15/+112
| | | | | | | 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)
* Updated runtime files.Bram Moolenaar2015-11-012-3/+6
|
* Update runtime files.Bram Moolenaar2015-10-306-77/+448
|
* Update runtime files.Bram Moolenaar2015-10-133-21/+46
|
* Update various runtime files.Bram Moolenaar2015-09-255-38/+64
|
* Update documentation and syntax files.Bram Moolenaar2015-09-089-42/+108
|
* patch 7.4.858v7.4.858Bram Moolenaar2015-09-085-4/+16
| | | | | | 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)
* patch 7.4.852v7.4.852Bram Moolenaar2015-09-011-3/+1
| | | | | | 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)
* patch 7.4.849v7.4.849Bram Moolenaar2015-09-011-0/+25
| | | | | | 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)
* Updated runtime files and Italian messages.Bram Moolenaar2015-08-256-27/+53
|
* Update runtime files.Bram Moolenaar2015-08-117-38/+75
|
* patch 7.4.813v7.4.813Bram Moolenaar2015-08-111-0/+41
| | | | | Problem: It is not possible to save and restore character search state. Solution: Add getcharsearch() and setcharsearch(). (James McCoy)
* Updated and new runtime files.Bram Moolenaar2015-07-219-64/+58
|
* patch 7.4.793v7.4.793Bram Moolenaar2015-07-211-1/+43
| | | | | Problem: Can't specify when not to ring the bell. Solution: Add the 'belloff' option. (Christian Brabandt)
* patch 7.4.792v7.4.792Bram Moolenaar2015-07-211-2/+11
| | | | | Problem: Can only conceal text by defining syntax items. Solution: Use matchadd() to define concealing. (Christian Brabandt)
* patch 7.4.791v7.4.791Bram Moolenaar2015-07-211-3/+19
| | | | | | Problem: The buffer list can be very long. Solution: Add an argument to ":ls" to specify the type of buffer to list. (Marcin Szamotulski)