diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-03-20 21:08:34 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-03-20 21:08:34 +0100 |
commit | e18c0b39815c5a746887a509c2cd9f11fadaba07 (patch) | |
tree | b94b501fcc8394a958fb44844892333b8d2b774d /runtime/doc/if_pyth.txt | |
parent | be6aa46c4d8948e164f7d181dc19ed2fc4818395 (diff) | |
download | vim-e18c0b39815c5a746887a509c2cd9f11fadaba07.zip |
Updated runtime files.
Diffstat (limited to 'runtime/doc/if_pyth.txt')
-rw-r--r-- | runtime/doc/if_pyth.txt | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/runtime/doc/if_pyth.txt b/runtime/doc/if_pyth.txt index cc47beb27..4f79c575b 100644 --- a/runtime/doc/if_pyth.txt +++ b/runtime/doc/if_pyth.txt @@ -686,18 +686,24 @@ This means that Vim will search for the Python DLL or shared library file only when needed. When you don't use the Python interface you don't need it, thus you can use Vim without this file. -On MS-Windows to use the Python interface the Python DLL must be in your search -path. In a console window type "path" to see what directories are used. + +MS-Windows ~ + +To use the Python interface the Python DLL must be in your search path. In a +console window type "path" to see what directories are used. The 'pythondll' +or 'pythonthreedll' option can be also used to specify the Python DLL. The name of the DLL must match the Python version Vim was compiled with. Currently the name is "python24.dll". That is for Python 2.4. To know for sure edit "gvim.exe" and search for "python\d*.dll\c". -On Unix the 'pythondll' or 'pythonthreedll' option can be used to specify the -Python shared library file instead of DYNAMIC_PYTHON_DLL or -DYNAMIC_PYTHON3_DLL file what were specified at compile time. The version of -the shared library must match the Python 2.x or Python 3 version Vim was -compiled with. + +Unix ~ + +The 'pythondll' or 'pythonthreedll' option can be used to specify the Python +shared library file instead of DYNAMIC_PYTHON_DLL or DYNAMIC_PYTHON3_DLL file +what were specified at compile time. The version of the shared library must +match the Python 2.x or Python 3 version Vim was compiled with. ============================================================================== 10. Python 3 *python3* |