summaryrefslogtreecommitdiff
path: root/runtime
Commit message (Collapse)AuthorAgeFilesLines
...
* updated for version 7.4.310v7.4.310Bram Moolenaar2014-05-281-5/+23
| | | | | Problem: getpos()/setpos() don't include curswant. Solution: Add a fifth number when getting/setting the cursor.
* Runtime file updates.Bram Moolenaar2014-05-228-117/+359
|
* Update runtime files.Bram Moolenaar2014-05-1312-95/+121
|
* updated for version 7.4.293v7.4.293Bram Moolenaar2014-05-131-4/+11
| | | | | | Problem: It is not possible to ignore composing characters at a specific point in a pattern. Solution: Add the %C item.
* updated for version 7.4.279v7.4.279Bram Moolenaar2014-05-071-4/+13
| | | | | | Problem: globpath() returns a string, making it difficult to get a list of matches. (Greg Novack) Solution: Add an optional argument like with glob(). (Adnan Zafar)
* Runtime file updates.Bram Moolenaar2014-05-018-70/+163
|
* Updated runtime files.Bram Moolenaar2014-04-065-47/+184
|
* Updated runtime files.Bram Moolenaar2014-04-059-52/+83
|
* updated for version 7.4.248v7.4.248Bram Moolenaar2014-04-051-1/+13
| | | | | Problem: Cannot distinguish between NL and NUL in output of system(). Solution: Add systemlist(). (ZyX)
* updated for version 7.4.247v7.4.247Bram Moolenaar2014-04-051-4/+11
| | | | | | Problem: When passing input to system() there is no way to keep NUL and NL characters separate. Solution: Optionally use a list for the system() input. (ZyX)
* updated for version 7.4.243v7.4.243Bram Moolenaar2014-04-021-6/+16
| | | | | Problem: Cannot use setreg() to add text that includes a NUL. Solution: Make setreg() accept a list.
* updated for version 7.4.242v7.4.242Bram Moolenaar2014-04-021-2/+8
| | | | | | Problem: getreg() does not distinguish between a NL used for a line break and a NL used for a NUL character. Solution: Add another argument to return a list. (ZyX)
* updated for version 7.4.241v7.4.241Bram Moolenaar2014-04-021-2/+14
| | | | | | Problem: The string returned by submatch() does not distinguish between a NL from a line break and a NL that stands for a NUL character. Solution: Add a second argument to return a list. (ZyX)
* updated for version 7.4.237v7.4.237Bram Moolenaar2014-04-021-1/+1
| | | | | | Problem: When some patches was not included has("patch-7.4.123") may return true falsely. Solution: Check for the specific patch number.
* updated for version 7.4.235v7.4.235Bram Moolenaar2014-04-011-0/+14
| | | | | Problem: It is not easy to get the full path of a command. Solution: Add the exepath() function.
* updated for version 7.4.234v7.4.234Bram Moolenaar2014-04-011-0/+6
| | | | | Problem: Can't get the command that was used to start Vim. Solution: Add v:progpath. (Viktor Kojouharov)
* updated for version 7.4.230v7.4.230Bram Moolenaar2014-04-011-1/+1
| | | | | Problem: Error when using ":options". Solution: Fix the entry for 'lispwords'. (Kenichi Ito)
* Update runtime files.Bram Moolenaar2014-03-2721-103/+181
|
* updated for version 7.4.218v7.4.218Bram Moolenaar2014-03-253-5/+23
| | | | | Problem: It's not easy to remove duplicates from a list. Solution: Add the uniq() function. (LCD)
* updated for version 7.4.215v7.4.215Bram Moolenaar2014-03-251-6/+13
| | | | | | Problem: Inconsistency: ":sp foo" does not reload "foo", unless "foo" is the current buffer. (Liang Li) Solution: Do not reload the current buffer on a split command.
* updated for version 7.4.213v7.4.213Bram Moolenaar2014-03-231-1/+8
| | | | | | Problem: It's not possible to open a new buffer without creating a swap file. Solution: Add the ":noswapfile" modifier. (Christian Brabandt)
* Updated runtime files.Bram Moolenaar2014-03-2223-6914/+4881
|
* updated for version 7.4.201v7.4.201Bram Moolenaar2014-03-122-2/+2
| | | | | Problem: 'lispwords' is a global option. Solution: Make 'lispwords' global-local. (Sung Pae)
* updated for version 7.4.197v7.4.197Bram Moolenaar2014-03-121-0/+16
| | | | | Problem: Various problems on VMS. Solution: Fix several VMS problems. (Zoltan Arpadffy)
* Updated runtime files.Bram Moolenaar2014-03-0813-50/+132
|
* Update runtime files. Add Euphoria syntax files.Bram Moolenaar2014-02-2411-66/+461
|
* updated for version 7.4.191v7.4.191Bram Moolenaar2014-02-237-13/+17
| | | | | | Problem: Escaping a file name for shell commands can't be done without a function. Solution: Add the :S file name modifier.
* Update runtime files. Add support for systemverilog.Bram Moolenaar2014-02-1118-58/+411
|
* updated for version 7.4.165v7.4.165Bram Moolenaar2014-02-051-2/+3
| | | | | Problem: By default, after closing a buffer changes can't be undone. Solution: In the example vimrc file set 'undofile'.
* Updated runtime files.Bram Moolenaar2014-01-2318-485/+1097
|
* updated for version 7.4.145v7.4.145Bram Moolenaar2014-01-141-1/+1
| | | | | | Problem: getregtype() does not return zero for unknown register. Solution: Adjust documention: return empty string for unknown register. Check the register name to be valid. (Yukihiro Nakadaira)
* Updated runtime files.Bram Moolenaar2014-01-077-59/+186
|
* Runtime file updates.Bram Moolenaar2013-12-154-24/+48
|
* Updated runtime files.Bram Moolenaar2013-12-1110-95/+131
|
* updated for version 7.4.109v7.4.109Bram Moolenaar2013-11-281-0/+6
| | | | | Problem: ColorScheme autocommand matches with the current buffer name. Solution: Match with the colorscheme name. (Christian Brabandt)
* Updated runtime files.Bram Moolenaar2013-11-2810-45/+97
|
* Update runtime files.Bram Moolenaar2013-11-1411-86/+170
|
* updated for version 7.4.088v7.4.088Bram Moolenaar2013-11-122-0/+10
| | | | | | | Problem: When spell checking is enabled Asian characters are always marked as error. Solution: When 'spelllang' contains "cjk" do not mark Asian characters as error. (Ken Takata)
* updated for version 7.4.083v7.4.083Bram Moolenaar2013-11-091-0/+4
| | | | | Problem: It's hard to avoid adding a used pattern to the search history. Solution: Add the ":keeppatterns" modifier. (Christian Brabandt)
* Updated runtime files.Bram Moolenaar2013-11-097-55/+42
|
* updated for version 7.4.080v7.4.080Bram Moolenaar2013-11-091-0/+7
| | | | | Problem: Missing documentation for v:hlsearch. Solution: Include the right file in the patch.
* updated for version 7.4.073v7.4.073Bram Moolenaar2013-11-061-3/+4
| | | | | Problem: Setting undolevels for one buffer changes undo in another. Solution: Make 'undolevels' a global-local option. (Christian Brabandt)
* updated for version 7.4.069v7.4.069Bram Moolenaar2013-11-051-5/+7
| | | | | | | Problem: Cannot right shift lines starting with #. Solution: Allow the right shift when 'cino' contains #N with N > 0. (Christian Brabandt) Refactor parsing 'cino', store the values in the buffer.
* Update runtime files.Bram Moolenaar2013-11-0316-876/+951
|
* updated for version 7.4.057v7.4.057Bram Moolenaar2013-11-021-2/+19
| | | | | Problem: byteidx() does not work for composing characters. Solution: Add byteidxcomp().
* Runtime file updates.Bram Moolenaar2013-10-069-69/+89
|
* Fix problem with 'iskeyword' in CSS syntax.Bram Moolenaar2013-09-241-24/+19
|
* updated for version 7.4.034v7.4.034Bram Moolenaar2013-09-221-0/+5
| | | | | Problem: Using "p" in Visual block mode only changes the first line. Solution: Repeat the put in all text in the block. (Christian Brabandt)
* Update runtime files. Add support for J.Bram Moolenaar2013-09-2221-1399/+1199
|
* Updated runtime files.Bram Moolenaar2013-09-0519-96/+188
|