summaryrefslogtreecommitdiff
path: root/runtime/doc/eval.txt
AgeCommit message (Collapse)Author
2015-03-21Update runtime files.Bram Moolenaar
2015-03-05updated for version 7.4.656Bram Moolenaar
Problem: Missing changes for glob() in one file. Solution: Add the missing changes.
2015-02-28Updated runtime files.Bram Moolenaar
2015-02-03Update runtime files.Bram Moolenaar
2015-01-27updated for version 7.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
2014-12-14Updated runtime files.Bram Moolenaar
2014-12-06Update runtime files.Bram Moolenaar
2014-11-27updated for version 7.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-19Update runtime files.Bram Moolenaar
2014-11-13Update runtime files.Bram Moolenaar
2014-11-05updated for version 7.4.503Bram Moolenaar
Problem: Cannot append a list of lines to a file. Solution: Add the append option to writefile(). (Yasuhiro Matsumoto)
2014-10-02Update runtime files.Bram Moolenaar
2014-09-09Update runtime files.Bram Moolenaar
2014-09-09updated for version 7.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.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-22Updated runtime files.Bram Moolenaar
2014-08-06updated for version 7.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-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
2014-06-25Updated runtime files.Bram Moolenaar
2014-06-25updated for version 7.4.344Bram Moolenaar
Problem: Unessecary initializations and other things related to matchaddpos(). Solution: Code cleanup. (Alexey Radkov)
2014-06-25updated for version 7.4.338Bram Moolenaar
Problem: Cannot wrap lines taking indent into account. Solution: Add the 'breakindent' option. (many authors, final improvements by Christian Brabandt)
2014-06-17updated for version 7.4.330Bram Moolenaar
Problem: Using a regexp pattern to highlight a specific position can be slow. Solution: Add matchaddpos() to highlight specific positions efficiently. (Alexey Radkov)
2014-06-12Update runtime files.Bram Moolenaar
2014-05-28updated for version 7.4.313Bram Moolenaar
Problem: Changing the return value of getpos() causes an error. (Jie Zhu) Solution: Revert getpos() and add getcurpos().
2014-05-28updated for version 7.4.312Bram Moolenaar
Problem: Cannot figure out what argument list is being used for a window. Solution: Add the arglistid() function. (Marcin Szamotulski)
2014-05-28updated for version 7.4.311Bram Moolenaar
Problem: Can't use winrestview to only restore part of the view. Solution: Handle missing items in the dict. (Christian Brabandt)
2014-05-28updated for version 7.4.310Bram Moolenaar
Problem: getpos()/setpos() don't include curswant. Solution: Add a fifth number when getting/setting the cursor.
2014-05-13Update runtime files.Bram Moolenaar
2014-05-07updated for version 7.4.279Bram Moolenaar
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)
2014-05-01Runtime file updates.Bram Moolenaar
2014-04-06Updated runtime files.Bram Moolenaar
2014-04-05Updated runtime files.Bram Moolenaar
2014-04-05updated for version 7.4.248Bram Moolenaar
Problem: Cannot distinguish between NL and NUL in output of system(). Solution: Add systemlist(). (ZyX)
2014-04-05updated for version 7.4.247Bram Moolenaar
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)
2014-04-02updated for version 7.4.243Bram Moolenaar
Problem: Cannot use setreg() to add text that includes a NUL. Solution: Make setreg() accept a list.
2014-04-02updated for version 7.4.242Bram Moolenaar
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)
2014-04-02updated for version 7.4.241Bram Moolenaar
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)
2014-04-02updated for version 7.4.237Bram Moolenaar
Problem: When some patches was not included has("patch-7.4.123") may return true falsely. Solution: Check for the specific patch number.
2014-04-01updated for version 7.4.235Bram Moolenaar
Problem: It is not easy to get the full path of a command. Solution: Add the exepath() function.
2014-04-01updated for version 7.4.234Bram Moolenaar
Problem: Can't get the command that was used to start Vim. Solution: Add v:progpath. (Viktor Kojouharov)
2014-03-27Update runtime files.Bram Moolenaar
2014-03-25updated for version 7.4.218Bram Moolenaar
Problem: It's not easy to remove duplicates from a list. Solution: Add the uniq() function. (LCD)
2014-03-22Updated runtime files.Bram Moolenaar
2014-02-24Update runtime files. Add Euphoria syntax files.Bram Moolenaar
2014-02-23updated for version 7.4.191Bram Moolenaar
Problem: Escaping a file name for shell commands can't be done without a function. Solution: Add the :S file name modifier.
2014-02-11Update runtime files. Add support for systemverilog.Bram Moolenaar