summaryrefslogtreecommitdiff
path: root/runtime
AgeCommit message (Collapse)Author
2013-05-15updated for version 7.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.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.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.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.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.925Bram Moolenaar
Problem: Typos in source files. Solution: Fix the typos. (Ken Takata)
2013-05-06updated for version 7.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.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.878Bram Moolenaar
Problem: 'fileignorecase' is missing in options window and quickref. Solution: Add the option.
2013-03-19updated for version 7.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.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.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.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.828Bram Moolenaar
Problem: Mappings are not aware of wildmenu mode. Solution: Add wildmenumode(). (Christian Brabandt)
2013-02-13updated for version 7.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.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.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.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.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.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.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.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.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.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)
2012-10-05Updated runtime files.Bram Moolenaar
2012-10-03Update runtime files.Bram Moolenaar
2012-09-21Updated runtime files.Bram Moolenaar
2012-08-15Update runtime files.Bram Moolenaar
2012-08-15updated for version 7.3.632Bram Moolenaar
Problem: Cannot select beyond 222 columns with the mouse in xterm. Solution: Add support for SGR mouse tracking. (Hayaki Saito)
2012-08-15updated for version 7.3.631Bram Moolenaar
Problem: Cannot complete user names. Solution: Add user name completion. (Dominique Pelle)
2012-07-25Updated runtime files.Bram Moolenaar
2012-07-25updated for version 7.3.610Bram Moolenaar
Problem: Cannot operate on the text that a search pattern matches. Solution: Add the "gn" and "gN" commands. (Christian Brabandt)
2012-07-12Updated runtime files.Bram Moolenaar
2012-07-10updated for version 7.3.597Bram Moolenaar
Problem: 'clipboard' "autoselect" only applies to the * register. (Sergey Vakulenko) Solution: Make 'autoselect' work for the + register. (Christian Brabant) Add the "autoselectplus" option in 'clipboard' and the "P" flag in 'guioptions'.
2012-07-10updated for version 7.3.596Bram Moolenaar
Problem: Can't remove all signs for a file or buffer. Solution: Support "*" for the sign id. (Christian Brabandt)