summaryrefslogtreecommitdiff
path: root/runtime/doc/if_pyth.txt
Commit message (Collapse)AuthorAgeFilesLines
* Vim 8.0 releasev8.0.0000Bram Moolenaar2016-09-121-1/+1
|
* Updated runtime files.Bram Moolenaar2016-09-061-2/+10
|
* patch 7.4.1843v7.4.1843Bram Moolenaar2016-05-251-13/+25
| | | | | Problem: Tests involving Python are flaky. Solution: Set the pt_auto field. Add tests. (Nikolai Pavlov)
* Updated runtime files.Bram Moolenaar2016-04-211-1/+1
|
* patch 7.4.1731v7.4.1731Bram Moolenaar2016-04-141-4/+24
| | | | | Problem: Python: turns partial into simple funcref. Solution: Use partials like partials. (Nikolai Pavlov, closes #734)
* Updated runtime files.Bram Moolenaar2016-03-201-7/+13
|
* Updated runtime files.Bram Moolenaar2015-11-101-2/+2
|
* patch 7.4.907v7.4.907Bram Moolenaar2015-11-021-8/+14
| | | | | | | Problem: Libraries for dynamically loading interfaces can only be defined at compile time. Solution: Add options to specify the dll names. (Kazuki Sakamoto, closes #452)
* Update runtime files. Add vroom file support.Bram Moolenaar2014-07-261-2/+2
|
* release version 7.4v7.4Bram Moolenaar2013-08-101-1/+1
|
* Update files for the 7.4b BETA release.v7.4b.000Bram Moolenaar2013-07-281-1/+1
|
* Updated runtime files.Bram Moolenaar2013-07-171-2/+3
|
* Vim 7.4a BETA release.v7.4aBram Moolenaar2013-07-061-1/+1
|
* updated for version 7.3.1287v7.3.1287Bram Moolenaar2013-07-011-0/+5
| | | | | | Problem: Python SystemExit exception is not handled properly. Solution: Catch the exception and give an error. (Yasuhiro Matsumoto, Ken Takata)
* Updated runtime files.Bram Moolenaar2013-06-291-1/+1
|
* 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.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 runtime files.Bram Moolenaar2013-06-061-4/+4
|
* 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-011-1/+1
|
* 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-211-1/+1
|
* 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)
* Update runtime files.Bram Moolenaar2013-05-171-1/+1
|
* 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-061-1/+1
|
* 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 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-02-061-2/+2
|
* Update runtime files.Bram Moolenaar2013-01-301-3/+3
|
* Update runtime files.Bram Moolenaar2012-10-031-2/+2
|
* Updated runtime files.Bram Moolenaar2012-09-211-0/+20
|
* Update runtime files.Bram Moolenaar2012-08-151-4/+8
|
* Updated runtime files.Bram Moolenaar2012-07-121-9/+33
|
* updated for version 7.3.423v7.3.423Bram Moolenaar2012-02-041-3/+4
| | | | | | | Problem: Small mistakes in comments, proto and indent. Solution: Fix the mistakes. Also update runtime files
* Updated runtime files.Bram Moolenaar2011-09-141-2/+2
|
* Updated runtime files.Bram Moolenaar2011-05-101-1/+13
|