diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-01-28 17:45:49 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-01-28 17:45:49 +0100 |
commit | 84b242c369a22b581c43de9de0152f0baedd71ab (patch) | |
tree | 1b11843ec1af033e3b3ccd01dc1c3c0ad5e26d23 /runtime | |
parent | 501383236d203bacad758e82e47a07b877a3b63b (diff) | |
download | vim-git-84b242c369a22b581c43de9de0152f0baedd71ab.tar.gz |
patch 8.0.1436: not enough information about what Python version may workv8.0.1436
Problem: Not enough information about what Python version may work.
Solution: Add "python_compiled", "python3_compiled", "python_dynamic" and
"python3_dynamic" values for has().
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/eval.txt | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index df00dc9e4..147a7910d 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -9009,8 +9009,12 @@ persistent_undo Compiled with support for persistent undo history. postscript Compiled with PostScript file printing. printer Compiled with |:hardcopy| support. profile Compiled with |:profile| support. -python Compiled with Python 2.x interface. |has-python| -python3 Compiled with Python 3.x interface. |has-python| +python Python 2.x interface available. |has-python| +python_compiled Compiled with Python 2.x interface. |has-python| +python_dynamic Python 2.x interface is dynamically loaded. |has-python| +python3 Python 3.x interface available. |has-python| +python3_compiled Compiled with Python 3.x interface. |has-python| +python3_dynamic Python 3.x interface is dynamically loaded. |has-python| pythonx Compiled with |python_x| interface. |has-pythonx| qnx QNX version of Vim. quickfix Compiled with |quickfix| support. |