summaryrefslogtreecommitdiff
path: root/runtime/doc/if_pyth.txt
Commit message (Collapse)AuthorAgeFilesLines
* Update runtime files.Bram Moolenaar2018-02-091-5/+5
|
* Update runtime files.Bram Moolenaar2018-01-281-2/+21
|
* patch 8.0.1385: Python 3.5 is getting oldv8.0.1385Bram Moolenaar2017-12-101-2/+2
| | | | | Problem: Python 3.5 is getting old. Solution: Make Python 3.6 the default. (Ken Takata, closes #2429)
* Update runtime files.Bram Moolenaar2017-11-111-1/+1
|
* patch 8.0.1280: Python None cannot be converted to a Vim typev8.0.1280Bram Moolenaar2017-11-091-0/+2
| | | | | Problem: Python None cannot be converted to a Vim type. Solution: Convert it to v:none. (Ken Takata)
* Update runtime files.Bram Moolenaar2017-08-111-2/+2
|
* Update runtime files.Bram Moolenaar2017-03-161-1/+24
|
* Runtime file updates.Bram Moolenaar2017-03-051-5/+5
|
* patch 8.0.0360: sometimes VimL is used instead of "Vim script"v8.0.0360Bram Moolenaar2017-02-231-6/+6
| | | | | Problem: Sometimes VimL is used, which is confusing. Solution: Consistently use "Vim script". (Hirohito Higashi)
* Updated runtime files.Bram Moolenaar2017-02-171-4/+6
|
* Update runtime files.Bram Moolenaar2017-01-281-1/+1
|
* patch 8.0.0251: not easy to select Python 2 or 3v8.0.0251Bram Moolenaar2017-01-281-0/+66
| | | | | | Problem: It is not so easy to write a script that works with both Python 2 and Python 3, even when the Python code works with both. Solution: Add 'pyxversion', :pyx, etc. (Marc Weber, Ken Takata)
* Updated runtime files.Bram Moolenaar2016-09-221-3/+3
|
* 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)