summaryrefslogtreecommitdiff
path: root/runtime
Commit message (Collapse)AuthorAgeFilesLines
* Update runtime files and translations.Bram Moolenaar2014-10-1512-1291/+1844
|
* Update runtime files.Bram Moolenaar2014-10-0216-78/+132
|
* updated for version 7.4.456v7.4.456Bram Moolenaar2014-09-231-1/+1
| | | | | | Problem: 'backupcopy' is global, cannot write only some files in a different way. Solution: Make 'backupcopy' global-local. (Christian Brabandt)
* Updated runtime files.Bram Moolenaar2014-09-1913-134/+156
|
* updated for version 7.4.450v7.4.450Bram Moolenaar2014-09-191-24/+35
| | | | | | Problem: Not all commands that edit another buffer support the +cmd argument. Solution: Add the +cmd argument to relevant commands. (Marcin Szamotulski)
* updated for version 7.4.449v7.4.449Bram Moolenaar2014-09-192-0/+4
| | | | | Problem: Can't easily close the help window. (Chris Gaal) Solution: Add ":helpclose". (Christian Brabandt)
* updated for version 7.4.447v7.4.447Bram Moolenaar2014-09-191-0/+11
| | | | | Problem: Spell files from Hunspell may generate a lot of errors. Solution: Add the IGNOREEXTRA flag.
* Update runtime files.Bram Moolenaar2014-09-0910-87/+134
|
* updated for version 7.4.434v7.4.434Bram Moolenaar2014-09-091-0/+2
| | | | | | Problem: gettabvar() is not consistent with getwinvar() and getbufvar(). Solution: Return a dict with all variables when the varname is empty. (Yasuhiro Matsumoto)
* updated for version 7.4.427v7.4.427Bram Moolenaar2014-08-291-0/+6
| | | | | | Problem: When an InsertCharPre autocommand executes system() typeahead may be echoed and messes up the display. (Jacob Niehus) Solution: Do not set cooked mode when invoked from ":silent".
* Update runtime files.Bram Moolenaar2014-08-2916-55/+268
|
* Runtime file updates.Bram Moolenaar2014-08-237-37/+163
|
* updated for version 7.4.414v7.4.414Bram Moolenaar2014-08-221-0/+13
| | | | | | Problem: Cannot define a command only when it's used. Solution: Add the CmdUndefined autocommand event. (partly by Yasuhiro Matsumoto)
* Updated runtime files.Bram Moolenaar2014-08-2238-271/+1120
|
* updated for version 7.4.399v7.4.399Bram Moolenaar2014-08-102-13/+37
| | | | | | | | | Problem: Encryption implementation is messy. Blowfish encryption has a weakness. Solution: Refactor the encryption, store the state in an allocated struct instead of using a save/restore mechanism. Introduce the "blowfish2" method, which does not have the weakness and encrypts the whole undo file. (largely by David Leadbeater)
* updated for version 7.4.397v7.4.397Bram Moolenaar2014-08-061-3/+10
| | | | | | Problem: Matchparen only uses the topmost syntax item. Solution: Go through the syntax stack to find items. (James McCoy) Also use getcurpos() when possible.
* updated for version 7.4.393v7.4.393Bram Moolenaar2014-08-063-0/+73
| | | | | | | | Problem: Text drawing on newer MS-Windows systems is suboptimal. Some multi-byte characters are not displayed, even though the same font in Notepad can display them. (Srinath Avadhanula) Solution: Add the 'renderoptions' option to enable Direct-X drawing. (Taro Muraoka)
* Update runtime files. Add vroom file support.Bram Moolenaar2014-07-2610-33/+189
|
* Update runtime files. Make matchparen plugin backwards compatible.Bram Moolenaar2014-07-1912-24/+133
| | | | Add json filetype.
* Updated runtime files.Bram Moolenaar2014-07-1022-52/+636
|
* Updated runtime files. Overhauled HTML indent script.Bram Moolenaar2014-07-047-433/+936
|
* updated for version 7.4.353v7.4.353Bram Moolenaar2014-07-021-5/+5
| | | | | Problem: 'breakindent' doesn't work with the 'list' option. Solution: Make it work. (Christian Brabandt)
* Updated runtime files.Bram Moolenaar2014-06-2513-113/+2137
|
* updated for version 7.4.344v7.4.344Bram Moolenaar2014-06-251-6/+6
| | | | | | Problem: Unessecary initializations and other things related to matchaddpos(). Solution: Code cleanup. (Alexey Radkov)
* updated for version 7.4.338v7.4.338Bram Moolenaar2014-06-252-2/+8
| | | | | | Problem: Cannot wrap lines taking indent into account. Solution: Add the 'breakindent' option. (many authors, final improvements by Christian Brabandt)
* updated for version 7.4.336v7.4.336Bram Moolenaar2014-06-251-2/+3
| | | | | Problem: Setting 'history' to a big value causes out-of-memory errors. Solution: Limit the value to 10000. (Hirohito Higashi)
* updated for version 7.4.330v7.4.330Bram Moolenaar2014-06-173-5/+47
| | | | | | | Problem: Using a regexp pattern to highlight a specific position can be slow. Solution: Add matchaddpos() to highlight specific positions efficiently. (Alexey Radkov)
* Update runtime files.Bram Moolenaar2014-06-1217-146/+231
|
* updated for version 7.4.314v7.4.314Bram Moolenaar2014-05-281-0/+3
| | | | | Problem: Completion messages can get in the way of a plugin. Solution: Add 'c' flag to 'shortmess' option. (Shougo Matsu)
* updated for version 7.4.313v7.4.313Bram Moolenaar2014-05-281-14/+26
| | | | | Problem: Changing the return value of getpos() causes an error. (Jie Zhu) Solution: Revert getpos() and add getcurpos().
* updated for version 7.4.312v7.4.312Bram Moolenaar2014-05-282-0/+15
| | | | | Problem: Cannot figure out what argument list is being used for a window. Solution: Add the arglistid() function. (Marcin Szamotulski)
* updated for version 7.4.311v7.4.311Bram Moolenaar2014-05-281-1/+13
| | | | | Problem: Can't use winrestview to only restore part of the view. Solution: Handle missing items in the dict. (Christian Brabandt)
* 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
|