summaryrefslogtreecommitdiffstats
path: root/runtime
AgeCommit message (Collapse)Author
2015-03-21Update runtime files.Bram Moolenaar
2015-03-05updated for version 7.4.656v7.4.656Bram Moolenaar
Problem: Missing changes for glob() in one file. Solution: Add the missing changes.
2015-03-05updated for version 7.4.652v7.4.652Bram Moolenaar
Problem: Xxd lacks a few features. Solution: Use 8 characters for the file position. Add the -e and -o arguments. (Vadim Vygonets)
2015-03-02Update a few runtime files.Bram Moolenaar
2015-02-28Updated runtime files.Bram Moolenaar
2015-02-10updated for version 7.4.627v7.4.627Bram Moolenaar
Problem: The last screen cell is not updated. Solution: Respect the "tn" termcap feature. (Hayaki Saito)
2015-02-03Update runtime files.Bram Moolenaar
2015-01-27updated for version 7.4.605v7.4.605Bram Moolenaar
Problem: The # register is not writable, it cannot be restored after jumping around. Solution: Make the # register writable. (Marcin Szamotulski)
2015-01-27updated for version 7.4.602v7.4.602Bram Moolenaar
Problem: ":set" does not accept hex numbers as documented. Solution: Use vim_str2nr(). (ZyX)
2015-01-27updated for version 7.4.601v7.4.601Bram Moolenaar
Problem: It is not possible to have feedkeys() insert characters. Solution: Add the 'i' flag.
2015-01-25Update runtime files.Bram Moolenaar
2015-01-20updated for version 7.4.586v7.4.586Bram Moolenaar
Problem: Parallel building of the documentation html files is not reliable. Solution: Remove a cyclic dependency. (Reiner Herrmann)
2015-01-14Updated runtime files.Bram Moolenaar
2015-01-14Updated runtime files.Bram Moolenaar
2015-01-10Updated syntax files.Bram Moolenaar
2015-01-07Update runtime files.Bram Moolenaar
2015-01-07updated for version 7.4.566v7.4.566Bram Moolenaar
Problem: :argdo, :bufdo, :windo and :tabdo don't take a range. Solution: Support the range. (Marcin Szamotulski)
2014-12-14Updated runtime files.Bram Moolenaar
2014-12-08updated for version 7.4.542v7.4.542Bram Moolenaar
Problem: Using a range for window and buffer commands has a few problems. Cannot specify the type of range for a user command. Solution: Add the -addr argument for user commands. Fix problems. (Marcin Szamotulski)
2014-12-06Update runtime files.Bram Moolenaar
2014-11-30updated for version 7.4.539v7.4.539Bram Moolenaar
Problem: Crash when computing buffer count. Problem with range for user commands. Line range wrong in Visual area. Solution: Avoid segfault in compute_buffer_local_count(). Check for CMD_USER when checking type of range. (Marcin Szamotulski)
2014-11-27updated for version 7.4.537v7.4.537Bram Moolenaar
Problem: Value of v:hlsearch reflects an internal variable. Solution: Make the value reflect whether search highlighting is actually displayed. (Christian Brabandt)
2014-11-27updated for version 7.4.530v7.4.530Bram Moolenaar
Problem: Many commands take a count or range that is not using line numbers. Solution: For each command specify what kind of count it uses. For windows, buffers and arguments have "$" and "." have a relevant meaning. (Marcin Szamotulski)
2014-11-19Update runtime files.Bram Moolenaar
2014-11-13Update runtime files.Bram Moolenaar
2014-11-05updated for version 7.4.503v7.4.503Bram Moolenaar
Problem: Cannot append a list of lines to a file. Solution: Add the append option to writefile(). (Yasuhiro Matsumoto)
2014-11-05updated for version 7.4.502v7.4.502Bram Moolenaar
Problem: Language mapping also applies to mapped characters. Solution: Add the 'langnoremap' option, when on 'langmap' does not apply to mapped characters. (Christian Brabandt)
2014-11-05Update runtime files.Bram Moolenaar
2014-11-05updated for version 7.4.497v7.4.497Bram Moolenaar
Problem: With some regexp patterns the NFA engine uses many states and becomes very slow. To the user it looks like Vim freezes. Solution: When the number of states reaches a limit fall back to the old engine. (Christian Brabandt)
2014-10-15Update runtime files and translations.Bram Moolenaar
2014-10-02Update runtime files.Bram Moolenaar
2014-09-23updated for version 7.4.456v7.4.456Bram Moolenaar
Problem: 'backupcopy' is global, cannot write only some files in a different way. Solution: Make 'backupcopy' global-local. (Christian Brabandt)
2014-09-19Updated runtime files.Bram Moolenaar
2014-09-19updated for version 7.4.450v7.4.450Bram Moolenaar
Problem: Not all commands that edit another buffer support the +cmd argument. Solution: Add the +cmd argument to relevant commands. (Marcin Szamotulski)
2014-09-19updated for version 7.4.449v7.4.449Bram Moolenaar
Problem: Can't easily close the help window. (Chris Gaal) Solution: Add ":helpclose". (Christian Brabandt)
2014-09-19updated for version 7.4.447v7.4.447Bram Moolenaar
Problem: Spell files from Hunspell may generate a lot of errors. Solution: Add the IGNOREEXTRA flag.
2014-09-09Update runtime files.Bram Moolenaar
2014-09-09updated for version 7.4.434v7.4.434Bram Moolenaar
Problem: gettabvar() is not consistent with getwinvar() and getbufvar(). Solution: Return a dict with all variables when the varname is empty. (Yasuhiro Matsumoto)
2014-08-29updated for version 7.4.427v7.4.427Bram Moolenaar
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".
2014-08-29Update runtime files.Bram Moolenaar
2014-08-23Runtime file updates.Bram Moolenaar
2014-08-22updated for version 7.4.414v7.4.414Bram Moolenaar
Problem: Cannot define a command only when it's used. Solution: Add the CmdUndefined autocommand event. (partly by Yasuhiro Matsumoto)
2014-08-22Updated runtime files.Bram Moolenaar
2014-08-10updated for version 7.4.399v7.4.399Bram Moolenaar
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)
2014-08-06updated for version 7.4.397v7.4.397Bram Moolenaar
Problem: Matchparen only uses the topmost syntax item. Solution: Go through the syntax stack to find items. (James McCoy) Also use getcurpos() when possible.
2014-08-06updated for version 7.4.393v7.4.393Bram Moolenaar
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)
2014-07-26Update runtime files. Add vroom file support.Bram Moolenaar
2014-07-19Update runtime files. Make matchparen plugin backwards compatible.Bram Moolenaar
Add json filetype.
2014-07-10Updated runtime files.Bram Moolenaar
2014-07-04Updated runtime files. Overhauled HTML indent script.Bram Moolenaar