summaryrefslogtreecommitdiff
path: root/runtime/doc
Commit message (Collapse)AuthorAgeFilesLines
* Update runtime files and translations.Bram Moolenaar2014-10-152-40/+53
|
* Update runtime files.Bram Moolenaar2014-10-0212-42/+85
|
* 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-196-41/+35
|
* 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-097-29/+61
|
* 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-2910-45/+54
|
* Runtime file updates.Bram Moolenaar2014-08-233-7/+4
|
* 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-2210-51/+102
|
* 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.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-264-28/+12
|
* Update runtime files. Make matchparen plugin backwards compatible.Bram Moolenaar2014-07-193-11/+46
| | | | Add json filetype.
* Updated runtime files.Bram Moolenaar2014-07-106-31/+15
|
* Updated runtime files. Overhauled HTML indent script.Bram Moolenaar2014-07-046-13/+50
|
* 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-257-56/+93
|
* 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-251-2/+2
| | | | | | 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-172-0/+38
| | | | | | | 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-1210-87/+108
|
* 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-225-55/+133
|
* Update runtime files.Bram Moolenaar2014-05-1310-90/+89
|
* 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-016-37/+73
|
* Updated runtime files.Bram Moolenaar2014-04-062-11/+9
|
* Updated runtime files.Bram Moolenaar2014-04-058-51/+82
|
* 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)
* Update runtime files.Bram Moolenaar2014-03-2715-55/+117
|
* 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.