diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-09-22 22:33:02 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-09-22 22:33:02 +0200 |
commit | 50ba526fbf3e9e5e0e6b0b3086a4d5df581ebc7e (patch) | |
tree | d2eeeb618935c8cbd3d05f2d1b771d49b346d9b7 /runtime/doc/if_pyth.txt | |
parent | 9e02cfa226b2577ec867b544a1a450a428a19880 (diff) | |
download | vim-50ba526fbf3e9e5e0e6b0b3086a4d5df581ebc7e.zip |
Updated runtime files.
Diffstat (limited to 'runtime/doc/if_pyth.txt')
-rw-r--r-- | runtime/doc/if_pyth.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/if_pyth.txt b/runtime/doc/if_pyth.txt index f9961a84a..5929bcf50 100644 --- a/runtime/doc/if_pyth.txt +++ b/runtime/doc/if_pyth.txt @@ -1,4 +1,4 @@ -*if_pyth.txt* For Vim version 8.0. Last change: 2016 Sep 01 +*if_pyth.txt* For Vim version 8.0. Last change: 2016 Sep 17 VIM REFERENCE MANUAL by Paul Moore @@ -748,11 +748,11 @@ match the Python 2.x or Python 3 version Vim was compiled with. The `:py3` and `:python3` commands work similar to `:python`. A simple check if the `:py3` command is working: > :py3 print("Hello") -< *:py3file* + To see what version of Python you have: > :py3 import sys :py3 print(sys.version) - +< *:py3file* The `:py3file` command works similar to `:pyfile`. *:py3do* The `:py3do` command works similar to `:pydo`. |