summaryrefslogtreecommitdiffstats
path: root/runtime
AgeCommit message (Collapse)Author
2013-05-29updated for version 7.3.1042v7.3.1042Bram Moolenaar
Problem: Python: can't assign to vim.Buffer.name. Solution: Python patch 3. (ZyX)
2013-05-21Updated runtime files, language files and translations.Bram Moolenaar
2013-05-21updated for version 7.3.996v7.3.996Bram Moolenaar
Problem: Python: Can't check types of what is returned by bindeval(). Solution: Add vim.List, vim.Dictionary and vim.Function types. (ZyX)
2013-05-19updated for version 7.3.972v7.3.972Bram Moolenaar
Problem: Cursor not restored after InsertEnter autocommand if it moved to another line. Solution: Also restore if the saved line number is still valid. Allow setting v:char to skip restoring.
2013-05-19updated for version 7.3.970v7.3.970Bram Moolenaar
Problem: Syntax highlighting can be slow. Solution: Include the NFA regexp engine. Add the 'regexpengine' option to select which one is used. (various authors, including Ken Takata, Andrei Aiordachioaie, Russ Cox, Xiaozhou Liua, Ian Young)
2013-05-17Update runtime files.Bram Moolenaar
2013-05-17updated for version 7.3.966v7.3.966Bram Moolenaar
Problem: There is ":py3do" but no ":pydo". Solution: Add the ":pydo" command. (Lilydjwg)
2013-05-17updated for version 7.3.964v7.3.964Bram Moolenaar
Problem: Python: not so easy to access tab pages. Solution: Add window.tabpage, make window.number work with non-current tab pages. (ZyX)
2013-05-15updated for version 7.3.957v7.3.957Bram Moolenaar
Problem: Python does not have a "do" command like Perl or Lua. Solution: Add the ":py3do" command. (Lilydjwg)
2013-05-15updated for version 7.3.952v7.3.952Bram Moolenaar
Problem: Python: It's not easy to change window/buffer/tabpage. Solution: Add ability to assign to vim.current.{tabpage,buffer,window}. (ZyX)
2013-05-15updated for version 7.3.949v7.3.949Bram Moolenaar
Problem: Python: no easy access to tabpages. Solution: Add vim.tabpages and vim.current.tabpage. (ZyX)
2013-05-15updated for version 7.3.947v7.3.947Bram Moolenaar
Problem: Python: No iterator for vim.list and vim.bufferlist. Solution: Add the iterators. Also fix name of FunctionType. Add tests for vim.buffers. (ZyX)
2013-05-15updated for version 7.3.945v7.3.945Bram Moolenaar
Problem: Python: List of buffers is not very useful. Solution: Make vim.buffers a map. No iterator yet. (ZyX)
2013-05-12updated for version 7.3.940v7.3.940Bram Moolenaar
Problem: Python: Can't get position of window. Solution: Add window.row and window.col. (ZyX)
2013-05-12updated for version 7.3.938v7.3.938Bram Moolenaar
Problem: Python: not easy to get to window number. Solution: Add vim.window.number. (ZyX)
2013-05-06Updated runtime files.Bram Moolenaar
2013-05-06updated for version 7.3.926v7.3.926Bram Moolenaar
Problem: Autocommands are triggered by setwinvar() et al. Missing BufEnter on :tabclose. Duplicate WinEnter on :tabclose. Wrong order of events for :tablose and :tabnew. Solution: Fix these autocommand events. (Zyx)
2013-05-06updated for version 7.3.925v7.3.925Bram Moolenaar
Problem: Typos in source files. Solution: Fix the typos. (Ken Takata)
2013-05-06updated for version 7.3.924v7.3.924Bram Moolenaar
Problem: Python interface can't easily access options. Solution: Add vim.options, vim.window.options and vim.buffer.options. (ZyX)
2013-04-24Updated runtime files.Bram Moolenaar
2013-04-24updated for version 7.3.911v7.3.911Bram Moolenaar
Problem: Python: Access to Vim variables is not so easy. Solution: Define vim.vars and vim.vvars. (ZyX)
2013-04-12Updated runtime files.Bram Moolenaar
2013-04-06Move redif syntax file to the right directory.Bram Moolenaar
Disable recognizing .rdf as a redif file.
2013-04-05Updated runtime files.Bram Moolenaar
2013-04-05updated for version 7.3.878v7.3.878Bram Moolenaar
Problem: 'fileignorecase' is missing in options window and quickref. Solution: Add the option.
2013-03-19updated for version 7.3.872v7.3.872Bram Moolenaar
Problem: On some systems case of file names is always ignored, on others never. Solution: Add the 'fileignorecase' option to control this at runtime. Implies 'wildignorecase'.
2013-03-19updated for version 7.3.867v7.3.867Bram Moolenaar
Problem: Matchparen does not update match when using auto-indenting. (Marc Aldorasi) Solution: Add the TextChanged and TextChangedI autocommand events.
2013-03-19Update runtime files.Bram Moolenaar
2013-03-07updated for version 7.3.850v7.3.850Bram Moolenaar
Problem: ":vimgrep //" matches everywhere. Solution: Make it use the previous search pattern. (David Bürgin)
2013-03-07Updated runtime files.Bram Moolenaar
2013-02-20Update runtime files.Bram Moolenaar
2013-02-20updated for version 7.3.831v7.3.831Bram Moolenaar
Problem: Clumsy to handle the situation that a variable does not exist. Solution: Add default value to getbufvar() et al. (Shougo Matsushita, Hirohito Higashi)
2013-02-20updated for version 7.3.828v7.3.828Bram Moolenaar
Problem: Mappings are not aware of wildmenu mode. Solution: Add wildmenumode(). (Christian Brabandt)
2013-02-13updated for version 7.3.816v7.3.816Bram Moolenaar
Problem: Can't compute a hash. Solution: Add the sha256() function. (Tyru, Hirohito Higashi)
2013-02-13Update runtime files.Bram Moolenaar
Add missing test files.
2013-02-06Updated runtime files.Bram Moolenaar
2013-01-30updated for version 7.3.791v7.3.791Bram Moolenaar
Problem: MzScheme interface doesn't work propely. Solution: Make it work better. (Sergey Khorev)
2013-01-30Update runtime files.Bram Moolenaar
2013-01-23updated for version 7.3.782v7.3.782Bram Moolenaar
Problem: Windows: IME composition may use a wrong font. Solution: Use 'guifontwide' for IME when it is set. (Taro Muraoka)
2013-01-23updated for version 7.3.780v7.3.780Bram Moolenaar
Problem: char2nr() and nr2char() always use 'encoding'. Solution: Add argument to use utf-8 characters. (Yasuhiro Matsumoto)
2012-12-12updated for version 7.3.758v7.3.758Bram Moolenaar
Problem: Matchit plugin does not handle space in #ifdef. Solution: Change matching pattern to allow spaces. (Mike Morearty)
2012-12-05Update runtime files.Bram Moolenaar
2012-12-05updated for version 7.3.750v7.3.750Bram Moolenaar
Problem: The justify macro does not always work correctly. Solution: Fix off-by-one error (James McCoy)
2012-12-05updated for version 7.3.748v7.3.748Bram Moolenaar
Problem: Cannot properly test conceal mode. Solution: Add the screencol() and screenrow() functions. Use them in test88. (Simon Ruderich)
2012-11-28Updated runtime files.Bram Moolenaar
2012-11-15Updated runtime files.Bram Moolenaar
2012-11-14updated for version 7.3.713v7.3.713Bram Moolenaar
Problem: printf() can only align to bytes, not characters. Solution: Add the "S" item. (Christian Brabandt)
2012-10-21Updated runtime files.Bram Moolenaar
2012-10-21updated for version 7.3.696v7.3.696Bram Moolenaar
Problem: Message about added spell language can be wrong. Solution: Give correct message. Add g:menutrans_set_lang_to to allow for translation. (Jiri Sedlak)
2012-10-21updated for version 7.3.694v7.3.694Bram Moolenaar
Problem: Now that 'shiftwidth' may use the value of 'tabstop' it is not so easy to use in indent files. Solution: Add the shiftwidth() function. (so8res)