summaryrefslogtreecommitdiff
path: root/runtime/doc
Commit message (Collapse)AuthorAgeFilesLines
* updated for version 7.3.1261v7.3.1261Bram Moolenaar2013-06-291-4/+14
| | | | | | | Problem: A buffer-local language mapping from a keymap stops a global insert mode mapping from working. (Ron Aaron) Solution: Do not wait for more characters to be typed only when the mapping was defined with <nowait>.
* Update runtime files. Remove duplicate tags in help.Bram Moolenaar2013-06-285-118/+49
|
* updated for version 7.3.1248v7.3.1248Bram Moolenaar2013-06-261-0/+38
| | | | | | Problem: Still have old hacking code for Input Method. Solution: Add 'imactivatefunc' and 'imstatusfunc' as a generic solution to Input Method activation. (Yukihiro Nakadaira)
* Updated runtime files. New version of TOhtml plugin.Bram Moolenaar2013-06-263-24/+61
|
* Update runtime files.Bram Moolenaar2013-06-245-51/+164
|
* Updated runtime files.Bram Moolenaar2013-06-155-53/+89
|
* Update runtime files.Bram Moolenaar2013-06-129-119/+184
|
* updated for version 7.3.1178v7.3.1178Bram Moolenaar2013-06-121-4/+10
| | | | | Problem: Can't put all Vim config files together in one directory. Solution: Load ~/.vim/vimrc if ~/.vimrc does not exist. (Lech Lorens)
* updated for version 7.3.1174v7.3.1174Bram Moolenaar2013-06-121-29/+4
| | | | | Problem: Python 2 and 3 use different ways to load modules. Solution: Use the same method. (ZyX)
* updated for version 7.3.1172v7.3.1172Bram Moolenaar2013-06-121-45/+45
| | | | | Problem: Python 2: loading modules doesn't work well. Solution: Fix the code. Add more tests. (ZyX)
* updated for version 7.3.1164v7.3.1164Bram Moolenaar2013-06-111-0/+17
| | | | | Problem: Can't test what is actually displayed on screen. Solution: Add the screenchar() and screenattr() functions.
* updated for version 7.3.1163v7.3.1163Bram Moolenaar2013-06-101-0/+113
| | | | | | Problem: Not easy to load Python modules. Solution: Search "python2", "python3" and "pythonx" directories in 'runtimepath' for Python modules. (ZyX)
* updated for version 7.3.1148v7.3.1148Bram Moolenaar2013-06-081-0/+1
| | | | | Problem: No command line completion for ":syntime". Solution: Implement the completion. (Dominique Pelle)
* Updated runtime files.Bram Moolenaar2013-06-067-71/+90
|
* updated for version 7.3.1129v7.3.1129Bram Moolenaar2013-06-061-0/+57
| | | | | Problem: Can't see what pattern in syntax highlighting is slow. Solution: Add the ":syntime" command.
* updated for version 7.3.1099v7.3.1099Bram Moolenaar2013-06-021-0/+7
| | | | | | Problem: Python: Changing directory with os.chdir() causes problems for Vim's notion of directories. Solution: Add vim.chdir() and vim.fchdir(). (ZyX)
* updated for version 7.3.1097v7.3.1097Bram Moolenaar2013-06-021-0/+10
| | | | | Problem: Python: a few recently added items are not documented. Solution: Update the documentation. (ZyX)
* updated for version 7.3.1096v7.3.1096Bram Moolenaar2013-06-021-6/+5
| | | | | Problem: Python: popitem() was not defined in a standard way. Solution: Remove the argument from popitem(). (ZyX)
* Updated runtime files and translations.Bram Moolenaar2013-06-0114-100/+162
|
* updated for version 7.3.1067v7.3.1067Bram Moolenaar2013-05-301-8/+37
| | | | | Problem: Python: documentation lags behind. Solution: Python patch 26. (ZyX)
* updated for version 7.3.1061v7.3.1061Bram Moolenaar2013-05-301-47/+87
| | | | | Problem: Python: Dictionary is not standard. Solution: Python patch 20: Add standard methods and fields. (ZyX)
* updated for version 7.3.1042v7.3.1042Bram Moolenaar2013-05-291-1/+6
| | | | | Problem: Python: can't assign to vim.Buffer.name. Solution: Python patch 3. (ZyX)
* Updated runtime files, language files and translations.Bram Moolenaar2013-05-2112-60/+160
|
* updated for version 7.3.996v7.3.996Bram Moolenaar2013-05-211-9/+26
| | | | | Problem: Python: Can't check types of what is returned by bindeval(). Solution: Add vim.List, vim.Dictionary and vim.Function types. (ZyX)
* updated for version 7.3.972v7.3.972Bram Moolenaar2013-05-191-2/+5
| | | | | | | 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.
* updated for version 7.3.970v7.3.970Bram Moolenaar2013-05-192-6/+50
| | | | | | | 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)
* Update runtime files.Bram Moolenaar2013-05-179-167/+178
|
* updated for version 7.3.966v7.3.966Bram Moolenaar2013-05-171-16/+19
| | | | | Problem: There is ":py3do" but no ":pydo". Solution: Add the ":pydo" command. (Lilydjwg)
* updated for version 7.3.964v7.3.964Bram Moolenaar2013-05-171-2/+3
| | | | | | Problem: Python: not so easy to access tab pages. Solution: Add window.tabpage, make window.number work with non-current tab pages. (ZyX)
* updated for version 7.3.957v7.3.957Bram Moolenaar2013-05-151-0/+15
| | | | | Problem: Python does not have a "do" command like Perl or Lua. Solution: Add the ":py3do" command. (Lilydjwg)
* updated for version 7.3.952v7.3.952Bram Moolenaar2013-05-151-3/+19
| | | | | | Problem: Python: It's not easy to change window/buffer/tabpage. Solution: Add ability to assign to vim.current.{tabpage,buffer,window}. (ZyX)
* updated for version 7.3.949v7.3.949Bram Moolenaar2013-05-151-0/+35
| | | | | Problem: Python: no easy access to tabpages. Solution: Add vim.tabpages and vim.current.tabpage. (ZyX)
* updated for version 7.3.947v7.3.947Bram Moolenaar2013-05-151-0/+1
| | | | | | 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)
* updated for version 7.3.945v7.3.945Bram Moolenaar2013-05-151-2/+1
| | | | | Problem: Python: List of buffers is not very useful. Solution: Make vim.buffers a map. No iterator yet. (ZyX)
* updated for version 7.3.940v7.3.940Bram Moolenaar2013-05-121-0/+3
| | | | | Problem: Python: Can't get position of window. Solution: Add window.row and window.col. (ZyX)
* updated for version 7.3.938v7.3.938Bram Moolenaar2013-05-121-0/+4
| | | | | Problem: Python: not easy to get to window number. Solution: Add vim.window.number. (ZyX)
* Updated runtime files.Bram Moolenaar2013-05-068-21/+69
|
* updated for version 7.3.926v7.3.926Bram Moolenaar2013-05-061-4/+0
| | | | | | | 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)
* updated for version 7.3.924v7.3.924Bram Moolenaar2013-05-061-0/+33
| | | | | Problem: Python interface can't easily access options. Solution: Add vim.options, vim.window.options and vim.buffer.options. (ZyX)
* Updated runtime files.Bram Moolenaar2013-04-247-204/+394
|
* updated for version 7.3.911v7.3.911Bram Moolenaar2013-04-241-0/+9
| | | | | Problem: Python: Access to Vim variables is not so easy. Solution: Define vim.vars and vim.vvars. (ZyX)
* Updated runtime files.Bram Moolenaar2013-04-122-13/+12
|
* Move redif syntax file to the right directory.Bram Moolenaar2013-04-061-4/+3
| | | | Disable recognizing .rdf as a redif file.
* Updated runtime files.Bram Moolenaar2013-04-058-52/+88
|
* updated for version 7.3.878v7.3.878Bram Moolenaar2013-04-051-1/+2
| | | | | Problem: 'fileignorecase' is missing in options window and quickref. Solution: Add the option.
* updated for version 7.3.872v7.3.872Bram Moolenaar2013-03-191-2/+10
| | | | | | | 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'.
* Update runtime files.Bram Moolenaar2013-03-1910-57/+73
|
* updated for version 7.3.850v7.3.850Bram Moolenaar2013-03-071-0/+2
| | | | | Problem: ":vimgrep //" matches everywhere. Solution: Make it use the previous search pattern. (David Bürgin)
* Updated runtime files.Bram Moolenaar2013-03-078-36/+82
|
* Update runtime files.Bram Moolenaar2013-02-204-37/+43
|