annotate runtime/doc/if_pyth.txt @ 12806:ef93c4415667 v8.0.1280

patch 8.0.1280: Python None cannot be converted to a Vim type commit https://github.com/vim/vim/commit/de323093e1be165a3eadd1ab3d02942358cd97bf Author: Bram Moolenaar <Bram@vim.org> Date: Thu Nov 9 19:56:08 2017 +0100 patch 8.0.1280: Python None cannot be converted to a Vim type Problem: Python None cannot be converted to a Vim type. Solution: Convert it to v:none. (Ken Takata)
author Christian Brabandt <cb@256bit.org>
date Thu, 09 Nov 2017 20:00:05 +0100
parents 444ad56c0cac
children f690da1b3c04
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
11160
d0a20101ecb2 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11062
diff changeset
1 *if_pyth.txt* For Vim version 8.0. Last change: 2017 Mar 09
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4 VIM REFERENCE MANUAL by Paul Moore
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7 The Python Interface to Vim *python* *Python*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8
3682
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
9 1. Commands |python-commands|
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
10 2. The vim module |python-vim|
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
11 3. Buffer objects |python-buffer|
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
12 4. Range objects |python-range|
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
13 5. Window objects |python-window|
4496
ebd94eabfd80 updated for version 7.3.996
Bram Moolenaar <bram@vim.org>
parents: 4437
diff changeset
14 6. Tab page objects |python-tabpage|
4627
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
15 7. vim.bindeval objects |python-bindeval-objects|
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
16 8. pyeval(), py3eval() Vim functions |python-pyeval|
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
17 9. Dynamic loading |python-dynamic|
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
18 10. Python 3 |python3|
10722
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
19 11. Python X |python_x|
11160
d0a20101ecb2 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11062
diff changeset
20 12. Building with Python support |python-building|
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
21
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
22 {Vi does not have any of these commands}
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
23
2350
06feaf4fe36a Rename some "python3" symbols to "py3", as the command name.
Bram Moolenaar <bram@vim.org>
parents: 2345
diff changeset
24 The Python 2.x interface is available only when Vim was compiled with the
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
25 |+python| feature.
2350
06feaf4fe36a Rename some "python3" symbols to "py3", as the command name.
Bram Moolenaar <bram@vim.org>
parents: 2345
diff changeset
26 The Python 3 interface is available only when Vim was compiled with the
06feaf4fe36a Rename some "python3" symbols to "py3", as the command name.
Bram Moolenaar <bram@vim.org>
parents: 2345
diff changeset
27 |+python3| feature.
5220
050893d44c33 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5146
diff changeset
28 Both can be available at the same time, but read |python-2-and-3|.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
29
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
30 ==============================================================================
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
31 1. Commands *python-commands*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
32
6091
7090d7f160f7 Update runtime files. Add vroom file support.
Bram Moolenaar <bram@vim.org>
parents: 5294
diff changeset
33 *:python* *:py* *E263* *E264* *E887*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
34 :[range]py[thon] {stmt}
3750
536aa8b0c934 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3682
diff changeset
35 Execute Python statement {stmt}. A simple check if
536aa8b0c934 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3682
diff changeset
36 the `:python` command is working: >
536aa8b0c934 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3682
diff changeset
37 :python print "Hello"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
38
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
39 :[range]py[thon] << {endmarker}
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
40 {script}
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
41 {endmarker}
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
42 Execute Python script {script}.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
43 Note: This command doesn't work when the Python
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
44 feature wasn't compiled in. To avoid errors, see
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
45 |script-here|.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
46
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
47 {endmarker} must NOT be preceded by any white space. If {endmarker} is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
48 omitted from after the "<<", a dot '.' must be used after {script}, like
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
49 for the |:append| and |:insert| commands.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
50 This form of the |:python| command is mainly useful for including python code
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
51 in Vim scripts.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
52
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
53 Example: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
54 function! IcecreamInitialize()
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
55 python << EOF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
56 class StrawberryIcecream:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
57 def __call__(self):
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
58 print 'EAT ME'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
59 EOF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
60 endfunction
10140
b11ceef7116e commit https://github.com/vim/vim/commit/64d8e25bf6efe5f18b032563521c3ce278c316ab
Christian Brabandt <cb@256bit.org>
parents: 9119
diff changeset
61
b11ceef7116e commit https://github.com/vim/vim/commit/64d8e25bf6efe5f18b032563521c3ce278c316ab
Christian Brabandt <cb@256bit.org>
parents: 9119
diff changeset
62 To see what version of Python you have: >
b11ceef7116e commit https://github.com/vim/vim/commit/64d8e25bf6efe5f18b032563521c3ce278c316ab
Christian Brabandt <cb@256bit.org>
parents: 9119
diff changeset
63 :python import sys
b11ceef7116e commit https://github.com/vim/vim/commit/64d8e25bf6efe5f18b032563521c3ce278c316ab
Christian Brabandt <cb@256bit.org>
parents: 9119
diff changeset
64 :python print(sys.version)
b11ceef7116e commit https://github.com/vim/vim/commit/64d8e25bf6efe5f18b032563521c3ce278c316ab
Christian Brabandt <cb@256bit.org>
parents: 9119
diff changeset
65
4073
e362db8b2d7b Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3847
diff changeset
66 Note: Python is very sensitive to the indenting. Make sure the "class" line
e362db8b2d7b Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3847
diff changeset
67 and "EOF" do not have any indent.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
68
4435
9b800f0a757f updated for version 7.3.966
Bram Moolenaar <bram@vim.org>
parents: 4431
diff changeset
69 *:pydo*
9b800f0a757f updated for version 7.3.966
Bram Moolenaar <bram@vim.org>
parents: 4431
diff changeset
70 :[range]pydo {body} Execute Python function "def _vim_pydo(line, linenr):
9b800f0a757f updated for version 7.3.966
Bram Moolenaar <bram@vim.org>
parents: 4431
diff changeset
71 {body}" for each line in the [range], with the
9b800f0a757f updated for version 7.3.966
Bram Moolenaar <bram@vim.org>
parents: 4431
diff changeset
72 function arguments being set to the text of each line
9b800f0a757f updated for version 7.3.966
Bram Moolenaar <bram@vim.org>
parents: 4431
diff changeset
73 in turn, without a trailing <EOL>, and the current
9b800f0a757f updated for version 7.3.966
Bram Moolenaar <bram@vim.org>
parents: 4431
diff changeset
74 line number. The function should return a string or
9b800f0a757f updated for version 7.3.966
Bram Moolenaar <bram@vim.org>
parents: 4431
diff changeset
75 None. If a string is returned, it becomes the text of
9b800f0a757f updated for version 7.3.966
Bram Moolenaar <bram@vim.org>
parents: 4431
diff changeset
76 the line in the current turn. The default for [range]
9b800f0a757f updated for version 7.3.966
Bram Moolenaar <bram@vim.org>
parents: 4431
diff changeset
77 is the whole file: "1,$".
9b800f0a757f updated for version 7.3.966
Bram Moolenaar <bram@vim.org>
parents: 4431
diff changeset
78 {not in Vi}
9b800f0a757f updated for version 7.3.966
Bram Moolenaar <bram@vim.org>
parents: 4431
diff changeset
79
9b800f0a757f updated for version 7.3.966
Bram Moolenaar <bram@vim.org>
parents: 4431
diff changeset
80 Examples:
9b800f0a757f updated for version 7.3.966
Bram Moolenaar <bram@vim.org>
parents: 4431
diff changeset
81 >
9b800f0a757f updated for version 7.3.966
Bram Moolenaar <bram@vim.org>
parents: 4431
diff changeset
82 :pydo return "%s\t%d" % (line[::-1], len(line))
9b800f0a757f updated for version 7.3.966
Bram Moolenaar <bram@vim.org>
parents: 4431
diff changeset
83 :pydo if line: return "%4d: %s" % (linenr, line)
9b800f0a757f updated for version 7.3.966
Bram Moolenaar <bram@vim.org>
parents: 4431
diff changeset
84 <
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
85 *:pyfile* *:pyf*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
86 :[range]pyf[ile] {file}
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
87 Execute the Python script in {file}. The whole
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
88 argument is used as a single file name. {not in Vi}
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
89
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
90 Both of these commands do essentially the same thing - they execute a piece of
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
91 Python code, with the "current range" |python-range| set to the given line
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
92 range.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
93
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
94 In the case of :python, the code to execute is in the command-line.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
95 In the case of :pyfile, the code to execute is the contents of the given file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
96
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
97 Python commands cannot be used in the |sandbox|.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
98
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
99 To pass arguments you need to set sys.argv[] explicitly. Example: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
100
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
101 :python import sys
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
102 :python sys.argv = ["foo", "bar"]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
103 :pyfile myscript.py
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
104
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
105 Here are some examples *python-examples* >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
106
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
107 :python from vim import *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
108 :python from string import upper
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
109 :python current.line = upper(current.line)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
110 :python print "Hello"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
111 :python str = current.buffer[42]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
112
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
113 (Note that changes - like the imports - persist from one command to the next,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
114 just like in the Python interpreter.)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
115
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
116 ==============================================================================
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
117 2. The vim module *python-vim*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
118
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
119 Python code gets all of its access to vim (with one exception - see
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
120 |python-output| below) via the "vim" module. The vim module implements two
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
121 methods, three constants, and one error object. You need to import the vim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
122 module before using it: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
123 :python import vim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
124
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
125 Overview >
20
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
126 :py print "Hello" # displays a message
2033
de5a43c5eedc Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents: 1702
diff changeset
127 :py vim.command(cmd) # execute an Ex command
20
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
128 :py w = vim.windows[n] # gets window "n"
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
129 :py cw = vim.current.window # gets the current window
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
130 :py b = vim.buffers[n] # gets buffer "n"
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
131 :py cb = vim.current.buffer # gets the current buffer
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
132 :py w.height = lines # sets the window height
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
133 :py w.cursor = (row, col) # sets the window cursor position
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
134 :py pos = w.cursor # gets a tuple (row, col)
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
135 :py name = b.name # gets the buffer file name
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
136 :py line = b[n] # gets a line from the buffer
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
137 :py lines = b[n:m] # gets a list of lines
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
138 :py num = len(b) # gets the number of lines
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
139 :py b[n] = str # sets a line in the buffer
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
140 :py b[n:m] = [str1, str2, str3] # sets a number of lines at once
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
141 :py del b[n] # deletes a line
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
142 :py del b[n:m] # deletes a number of lines
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
143
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
144
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
145 Methods of the "vim" module
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
146
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
147 vim.command(str) *python-command*
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
148 Executes the vim (ex-mode) command str. Returns None.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
149 Examples: >
20
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
150 :py vim.command("set tw=72")
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
151 :py vim.command("%s/aaa/bbb/g")
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
152 < The following definition executes Normal mode commands: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
153 def normal(str):
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
154 vim.command("normal "+str)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
155 # Note the use of single quotes to delimit a string containing
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
156 # double quotes
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
157 normal('"a2dd"aP')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
158 < *E659*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
159 The ":python" command cannot be used recursively with Python 2.2 and
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
160 older. This only works with Python 2.3 and later: >
20
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
161 :py vim.command("python print 'Hello again Python'")
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
162
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
163 vim.eval(str) *python-eval*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
164 Evaluates the expression str using the vim internal expression
633
7437be625546 updated for version 7.0183
vimboss
parents: 557
diff changeset
165 evaluator (see |expression|). Returns the expression result as:
7437be625546 updated for version 7.0183
vimboss
parents: 557
diff changeset
166 - a string if the Vim expression evaluates to a string or number
7437be625546 updated for version 7.0183
vimboss
parents: 557
diff changeset
167 - a list if the Vim expression evaluates to a Vim list
856
8cd729851562 updated for version 7.0g
vimboss
parents: 842
diff changeset
168 - a dictionary if the Vim expression evaluates to a Vim dictionary
633
7437be625546 updated for version 7.0183
vimboss
parents: 557
diff changeset
169 Dictionaries and lists are recursively expanded.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
170 Examples: >
20
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
171 :py text_width = vim.eval("&tw")
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
172 :py str = vim.eval("12+12") # NB result is a string! Use
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
173 # string.atoi() to convert to
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
174 # a number.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
175
856
8cd729851562 updated for version 7.0g
vimboss
parents: 842
diff changeset
176 :py tagList = vim.eval('taglist("eval_expr")')
633
7437be625546 updated for version 7.0183
vimboss
parents: 557
diff changeset
177 < The latter will return a python list of python dicts, for instance:
11062
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents: 10942
diff changeset
178 [{'cmd': '/^eval_expr(arg, nextcmd)$/', 'static': 0, 'name': ~
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents: 10942
diff changeset
179 'eval_expr', 'kind': 'f', 'filename': './src/eval.c'}] ~
633
7437be625546 updated for version 7.0183
vimboss
parents: 557
diff changeset
180
3682
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
181 vim.bindeval(str) *python-bindeval*
4627
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
182 Like |python-eval|, but returns special objects described in
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
183 |python-bindeval-objects|. These python objects let you modify (|List|
4698
2db005052371 updated for version 7.3.1096
Bram Moolenaar <bram@vim.org>
parents: 4681
diff changeset
184 or |Dictionary|) or call (|Funcref|) vim objects.
633
7437be625546 updated for version 7.0183
vimboss
parents: 557
diff changeset
185
4700
0c25fa1dfd97 updated for version 7.3.1097
Bram Moolenaar <bram@vim.org>
parents: 4698
diff changeset
186 vim.strwidth(str) *python-strwidth*
0c25fa1dfd97 updated for version 7.3.1097
Bram Moolenaar <bram@vim.org>
parents: 4698
diff changeset
187 Like |strwidth()|: returns number of display cells str occupies, tab
0c25fa1dfd97 updated for version 7.3.1097
Bram Moolenaar <bram@vim.org>
parents: 4698
diff changeset
188 is counted as one cell.
0c25fa1dfd97 updated for version 7.3.1097
Bram Moolenaar <bram@vim.org>
parents: 4698
diff changeset
189
4833
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
190 vim.foreach_rtp(callable) *python-foreach_rtp*
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
191 Call the given callable for each path in 'runtimepath' until either
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
192 callable returns something but None, the exception is raised or there
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
193 are no longer paths. If stopped in case callable returned non-None,
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
194 vim.foreach_rtp function returns the value returned by callable.
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
195
4704
542af01979be updated for version 7.3.1099
Bram Moolenaar <bram@vim.org>
parents: 4700
diff changeset
196 vim.chdir(*args, **kwargs) *python-chdir*
542af01979be updated for version 7.3.1099
Bram Moolenaar <bram@vim.org>
parents: 4700
diff changeset
197 vim.fchdir(*args, **kwargs) *python-fchdir*
542af01979be updated for version 7.3.1099
Bram Moolenaar <bram@vim.org>
parents: 4700
diff changeset
198 Run os.chdir or os.fchdir, then all appropriate vim stuff.
542af01979be updated for version 7.3.1099
Bram Moolenaar <bram@vim.org>
parents: 4700
diff changeset
199 Note: you should not use these functions directly, use os.chdir and
542af01979be updated for version 7.3.1099
Bram Moolenaar <bram@vim.org>
parents: 4700
diff changeset
200 os.fchdir instead. Behavior of vim.fchdir is undefined in case
542af01979be updated for version 7.3.1099
Bram Moolenaar <bram@vim.org>
parents: 4700
diff changeset
201 os.fchdir does not exist.
542af01979be updated for version 7.3.1099
Bram Moolenaar <bram@vim.org>
parents: 4700
diff changeset
202
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
203 Error object of the "vim" module
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
204
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
205 vim.error *python-error*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
206 Upon encountering a Vim error, Python raises an exception of type
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
207 vim.error.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
208 Example: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
209 try:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
210 vim.command("put a")
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
211 except vim.error:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
212 # nothing in register a
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
213
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
214 Constants of the "vim" module
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
215
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
216 Note that these are not actually constants - you could reassign them.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
217 But this is silly, as you would then lose access to the vim objects
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
218 to which the variables referred.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
219
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
220 vim.buffers *python-buffers*
4393
80eea7a9d6b9 updated for version 7.3.945
Bram Moolenaar <bram@vim.org>
parents: 4383
diff changeset
221 A mapping object providing access to the list of vim buffers. The
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
222 object supports the following operations: >
20
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
223 :py b = vim.buffers[i] # Indexing (read-only)
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
224 :py b in vim.buffers # Membership test
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
225 :py n = len(vim.buffers) # Number of elements
4397
a84f21892563 updated for version 7.3.947
Bram Moolenaar <bram@vim.org>
parents: 4393
diff changeset
226 :py for b in vim.buffers: # Iterating over buffer list
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
227 <
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
228 vim.windows *python-windows*
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
229 A sequence object providing access to the list of vim windows. The
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
230 object supports the following operations: >
20
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
231 :py w = vim.windows[i] # Indexing (read-only)
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
232 :py w in vim.windows # Membership test
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
233 :py n = len(vim.windows) # Number of elements
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
234 :py for w in vim.windows: # Sequential access
4698
2db005052371 updated for version 7.3.1096
Bram Moolenaar <bram@vim.org>
parents: 4681
diff changeset
235 < Note: vim.windows object always accesses current tab page.
4401
cfd76908da25 updated for version 7.3.949
Bram Moolenaar <bram@vim.org>
parents: 4397
diff changeset
236 |python-tabpage|.windows objects are bound to parent |python-tabpage|
cfd76908da25 updated for version 7.3.949
Bram Moolenaar <bram@vim.org>
parents: 4397
diff changeset
237 object and always use windows from that tab page (or throw vim.error
cfd76908da25 updated for version 7.3.949
Bram Moolenaar <bram@vim.org>
parents: 4397
diff changeset
238 in case tab page was deleted). You can keep a reference to both
cfd76908da25 updated for version 7.3.949
Bram Moolenaar <bram@vim.org>
parents: 4397
diff changeset
239 without keeping a reference to vim module object or |python-tabpage|,
4589
fa39483a1363 updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents: 4502
diff changeset
240 they will not lose their properties in this case.
4401
cfd76908da25 updated for version 7.3.949
Bram Moolenaar <bram@vim.org>
parents: 4397
diff changeset
241
cfd76908da25 updated for version 7.3.949
Bram Moolenaar <bram@vim.org>
parents: 4397
diff changeset
242 vim.tabpages *python-tabpages*
cfd76908da25 updated for version 7.3.949
Bram Moolenaar <bram@vim.org>
parents: 4397
diff changeset
243 A sequence object providing access to the list of vim tab pages. The
cfd76908da25 updated for version 7.3.949
Bram Moolenaar <bram@vim.org>
parents: 4397
diff changeset
244 object supports the following operations: >
cfd76908da25 updated for version 7.3.949
Bram Moolenaar <bram@vim.org>
parents: 4397
diff changeset
245 :py t = vim.tabpages[i] # Indexing (read-only)
cfd76908da25 updated for version 7.3.949
Bram Moolenaar <bram@vim.org>
parents: 4397
diff changeset
246 :py t in vim.tabpages # Membership test
cfd76908da25 updated for version 7.3.949
Bram Moolenaar <bram@vim.org>
parents: 4397
diff changeset
247 :py n = len(vim.tabpages) # Number of elements
cfd76908da25 updated for version 7.3.949
Bram Moolenaar <bram@vim.org>
parents: 4397
diff changeset
248 :py for t in vim.tabpages: # Sequential access
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
249 <
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
250 vim.current *python-current*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
251 An object providing access (via specific attributes) to various
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
252 "current" objects available in vim:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
253 vim.current.line The current line (RW) String
4407
2a166caf8709 updated for version 7.3.952
Bram Moolenaar <bram@vim.org>
parents: 4401
diff changeset
254 vim.current.buffer The current buffer (RW) Buffer
2a166caf8709 updated for version 7.3.952
Bram Moolenaar <bram@vim.org>
parents: 4401
diff changeset
255 vim.current.window The current window (RW) Window
2a166caf8709 updated for version 7.3.952
Bram Moolenaar <bram@vim.org>
parents: 4401
diff changeset
256 vim.current.tabpage The current tab page (RW) TabPage
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
257 vim.current.range The current line range (RO) Range
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
258
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
259 The last case deserves a little explanation. When the :python or
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
260 :pyfile command specifies a range, this range of lines becomes the
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
261 "current range". A range is a bit like a buffer, but with all access
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
262 restricted to a subset of lines. See |python-range| for more details.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
263
4407
2a166caf8709 updated for version 7.3.952
Bram Moolenaar <bram@vim.org>
parents: 4401
diff changeset
264 Note: When assigning to vim.current.{buffer,window,tabpage} it expects
2a166caf8709 updated for version 7.3.952
Bram Moolenaar <bram@vim.org>
parents: 4401
diff changeset
265 valid |python-buffer|, |python-window| or |python-tabpage| objects
2a166caf8709 updated for version 7.3.952
Bram Moolenaar <bram@vim.org>
parents: 4401
diff changeset
266 respectively. Assigning triggers normal (with |autocommand|s)
2a166caf8709 updated for version 7.3.952
Bram Moolenaar <bram@vim.org>
parents: 4401
diff changeset
267 switching to given buffer, window or tab page. It is the only way to
2a166caf8709 updated for version 7.3.952
Bram Moolenaar <bram@vim.org>
parents: 4401
diff changeset
268 switch UI objects in python: you can't assign to
2a166caf8709 updated for version 7.3.952
Bram Moolenaar <bram@vim.org>
parents: 4401
diff changeset
269 |python-tabpage|.window attribute. To switch without triggering
2a166caf8709 updated for version 7.3.952
Bram Moolenaar <bram@vim.org>
parents: 4401
diff changeset
270 autocommands use >
2a166caf8709 updated for version 7.3.952
Bram Moolenaar <bram@vim.org>
parents: 4401
diff changeset
271 py << EOF
2a166caf8709 updated for version 7.3.952
Bram Moolenaar <bram@vim.org>
parents: 4401
diff changeset
272 saved_eventignore = vim.options['eventignore']
2a166caf8709 updated for version 7.3.952
Bram Moolenaar <bram@vim.org>
parents: 4401
diff changeset
273 vim.options['eventignore'] = 'all'
2a166caf8709 updated for version 7.3.952
Bram Moolenaar <bram@vim.org>
parents: 4401
diff changeset
274 try:
2a166caf8709 updated for version 7.3.952
Bram Moolenaar <bram@vim.org>
parents: 4401
diff changeset
275 vim.current.buffer = vim.buffers[2] # Switch to buffer 2
2a166caf8709 updated for version 7.3.952
Bram Moolenaar <bram@vim.org>
parents: 4401
diff changeset
276 finally:
2a166caf8709 updated for version 7.3.952
Bram Moolenaar <bram@vim.org>
parents: 4401
diff changeset
277 vim.options['eventignore'] = saved_eventignore
2a166caf8709 updated for version 7.3.952
Bram Moolenaar <bram@vim.org>
parents: 4401
diff changeset
278 EOF
2a166caf8709 updated for version 7.3.952
Bram Moolenaar <bram@vim.org>
parents: 4401
diff changeset
279 <
4323
f1eab4f77a6f updated for version 7.3.911
Bram Moolenaar <bram@vim.org>
parents: 4098
diff changeset
280 vim.vars *python-vars*
f1eab4f77a6f updated for version 7.3.911
Bram Moolenaar <bram@vim.org>
parents: 4098
diff changeset
281 vim.vvars *python-vvars*
f1eab4f77a6f updated for version 7.3.911
Bram Moolenaar <bram@vim.org>
parents: 4098
diff changeset
282 Dictionary-like objects holding dictionaries with global (|g:|) and
f1eab4f77a6f updated for version 7.3.911
Bram Moolenaar <bram@vim.org>
parents: 4098
diff changeset
283 vim (|v:|) variables respectively. Identical to `vim.bindeval("g:")`,
f1eab4f77a6f updated for version 7.3.911
Bram Moolenaar <bram@vim.org>
parents: 4098
diff changeset
284 but faster.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
285
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
286 vim.options *python-options*
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
287 Object partly supporting mapping protocol (supports setting and
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
288 getting items) providing a read-write access to global options.
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
289 Note: unlike |:set| this provides access only to global options. You
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
290 cannot use this object to obtain or set local options' values or
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
291 access local-only options in any fashion. Raises KeyError if no global
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
292 option with such name exists (i.e. does not raise KeyError for
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
293 |global-local| options and global only options, but does for window-
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
294 and buffer-local ones). Use |python-buffer| objects to access to
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
295 buffer-local options and |python-window| objects to access to
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
296 window-local options.
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
297
4496
ebd94eabfd80 updated for version 7.3.996
Bram Moolenaar <bram@vim.org>
parents: 4437
diff changeset
298 Type of this object is available via "Options" attribute of vim
ebd94eabfd80 updated for version 7.3.996
Bram Moolenaar <bram@vim.org>
parents: 4437
diff changeset
299 module.
ebd94eabfd80 updated for version 7.3.996
Bram Moolenaar <bram@vim.org>
parents: 4437
diff changeset
300
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
301 Output from Python *python-output*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
302 Vim displays all Python code output in the Vim message area. Normal
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
303 output appears as information messages, and error output appears as
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
304 error messages.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
305
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
306 In implementation terms, this means that all output to sys.stdout
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
307 (including the output from print statements) appears as information
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
308 messages, and all output to sys.stderr (including error tracebacks)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
309 appears as error messages.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
310
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
311 *python-input*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
312 Input (via sys.stdin, including input() and raw_input()) is not
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
313 supported, and may cause the program to crash. This should probably be
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
314 fixed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
315
4833
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
316 *python2-directory* *python3-directory* *pythonx-directory*
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
317 Python 'runtimepath' handling *python-special-path*
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
318
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
319 In python vim.VIM_SPECIAL_PATH special directory is used as a replacement for
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
320 the list of paths found in 'runtimepath': with this directory in sys.path and
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
321 vim.path_hooks in sys.path_hooks python will try to load module from
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
322 {rtp}/python2 (or python3) and {rtp}/pythonx (for both python versions) for
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
323 each {rtp} found in 'runtimepath'.
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
324
4855
52850ef928f8 updated for version 7.3.1174
Bram Moolenaar <bram@vim.org>
parents: 4851
diff changeset
325 Implementation is similar to the following, but written in C: >
4833
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
326
4851
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
327 from imp import find_module, load_module
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
328 import vim
4833
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
329 import sys
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
330
4851
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
331 class VimModuleLoader(object):
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
332 def __init__(self, module):
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
333 self.module = module
4833
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
334
4851
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
335 def load_module(self, fullname, path=None):
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
336 return self.module
4833
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
337
4851
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
338 def _find_module(fullname, oldtail, path):
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
339 idx = oldtail.find('.')
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
340 if idx > 0:
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
341 name = oldtail[:idx]
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
342 tail = oldtail[idx+1:]
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
343 fmr = find_module(name, path)
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
344 module = load_module(fullname[:-len(oldtail)] + name, *fmr)
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
345 return _find_module(fullname, tail, module.__path__)
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
346 else:
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
347 fmr = find_module(fullname, path)
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
348 return load_module(fullname, *fmr)
4833
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
349
4851
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
350 # It uses vim module itself in place of VimPathFinder class: it does not
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
351 # matter for python which object has find_module function attached to as
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
352 # an attribute.
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
353 class VimPathFinder(object):
4855
52850ef928f8 updated for version 7.3.1174
Bram Moolenaar <bram@vim.org>
parents: 4851
diff changeset
354 @classmethod
4851
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
355 def find_module(cls, fullname, path=None):
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
356 try:
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
357 return VimModuleLoader(_find_module(fullname, fullname, path or vim._get_paths()))
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
358 except ImportError:
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
359 return None
4833
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
360
4855
52850ef928f8 updated for version 7.3.1174
Bram Moolenaar <bram@vim.org>
parents: 4851
diff changeset
361 @classmethod
4851
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
362 def load_module(cls, fullname, path=None):
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
363 return _find_module(fullname, fullname, path or vim._get_paths())
4833
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
364
4851
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
365 def hook(path):
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
366 if path == vim.VIM_SPECIAL_PATH:
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
367 return VimPathFinder
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
368 else:
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
369 raise ImportError
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
370
96e154e825a7 updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents: 4833
diff changeset
371 sys.path_hooks.append(hook)
4833
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
372
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
373 vim.VIM_SPECIAL_PATH *python-VIM_SPECIAL_PATH*
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
374 String constant used in conjunction with vim path hook. If path hook
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
375 installed by vim is requested to handle anything but path equal to
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
376 vim.VIM_SPECIAL_PATH constant it raises ImportError. In the only other
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
377 case it uses special loader.
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
378
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
379 Note: you must not use value of this constant directly, always use
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
380 vim.VIM_SPECIAL_PATH object.
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
381
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
382 vim.find_module(...) *python-find_module*
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
383 vim.path_hook(path) *python-path_hook*
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
384 Methods or objects used to implement path loading as described above.
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
385 You should not be using any of these directly except for vim.path_hook
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
386 in case you need to do something with sys.meta_path. It is not
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
387 guaranteed that any of the objects will exist in the future vim
4855
52850ef928f8 updated for version 7.3.1174
Bram Moolenaar <bram@vim.org>
parents: 4851
diff changeset
388 versions.
4833
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
389
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
390 vim._get_paths *python-_get_paths*
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
391 Methods returning a list of paths which will be searched for by path
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
392 hook. You should not rely on this method being present in future
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
393 versions, but can use it for debugging.
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
394
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
395 It returns a list of {rtp}/python2 (or {rtp}/python3) and
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
396 {rtp}/pythonx directories for each {rtp} in 'runtimepath'.
70b1178dec79 updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents: 4780
diff changeset
397
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
398 ==============================================================================
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
399 3. Buffer objects *python-buffer*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
400
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
401 Buffer objects represent vim buffers. You can obtain them in a number of ways:
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
402 - via vim.current.buffer (|python-current|)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
403 - from indexing vim.buffers (|python-buffers|)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
404 - from the "buffer" attribute of a window (|python-window|)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
405
3312
b7811ab264bf updated for version 7.3.423
Bram Moolenaar <bram@vim.org>
parents: 3082
diff changeset
406 Buffer objects have two read-only attributes - name - the full file name for
b7811ab264bf updated for version 7.3.423
Bram Moolenaar <bram@vim.org>
parents: 3082
diff changeset
407 the buffer, and number - the buffer number. They also have three methods
b7811ab264bf updated for version 7.3.423
Bram Moolenaar <bram@vim.org>
parents: 3082
diff changeset
408 (append, mark, and range; see below).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
409
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
410 You can also treat buffer objects as sequence objects. In this context, they
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
411 act as if they were lists (yes, they are mutable) of strings, with each
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
412 element being a line of the buffer. All of the usual sequence operations,
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
413 including indexing, index assignment, slicing and slice assignment, work as
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
414 you would expect. Note that the result of indexing (slicing) a buffer is a
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
415 string (list of strings). This has one unusual consequence - b[:] is different
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
416 from b. In particular, "b[:] = None" deletes the whole of the buffer, whereas
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
417 "b = None" merely updates the variable b, with no effect on the buffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
418
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
419 Buffer indexes start at zero, as is normal in Python. This differs from vim
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
420 line numbers, which start from 1. This is particularly relevant when dealing
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
421 with marks (see below) which use vim line numbers.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
422
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
423 The buffer object attributes are:
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
424 b.vars Dictionary-like object used to access
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
425 |buffer-variable|s.
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
426 b.options Mapping object (supports item getting, setting and
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
427 deleting) that provides access to buffer-local options
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
428 and buffer-local values of |global-local| options. Use
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
429 |python-window|.options if option is window-local,
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
430 this object will raise KeyError. If option is
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
431 |global-local| and local value is missing getting it
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
432 will return None.
4589
fa39483a1363 updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents: 4502
diff changeset
433 b.name String, RW. Contains buffer name (full path).
fa39483a1363 updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents: 4502
diff changeset
434 Note: when assigning to b.name |BufFilePre| and
fa39483a1363 updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents: 4502
diff changeset
435 |BufFilePost| autocommands are launched.
fa39483a1363 updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents: 4502
diff changeset
436 b.number Buffer number. Can be used as |python-buffers| key.
fa39483a1363 updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents: 4502
diff changeset
437 Read-only.
4780
2b11ac90d9e9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 4704
diff changeset
438 b.valid True or False. Buffer object becomes invalid when
4700
0c25fa1dfd97 updated for version 7.3.1097
Bram Moolenaar <bram@vim.org>
parents: 4698
diff changeset
439 corresponding buffer is wiped out.
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
440
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
441 The buffer object methods are:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
442 b.append(str) Append a line to the buffer
2391
f1d95a986dfb Document extra argument for Python append().
Bram Moolenaar <bram@vim.org>
parents: 2366
diff changeset
443 b.append(str, nr) Idem, below line "nr"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
444 b.append(list) Append a list of lines to the buffer
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
445 Note that the option of supplying a list of strings to
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
446 the append method differs from the equivalent method
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
447 for Python's built-in list objects.
2391
f1d95a986dfb Document extra argument for Python append().
Bram Moolenaar <bram@vim.org>
parents: 2366
diff changeset
448 b.append(list, nr) Idem, below line "nr"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
449 b.mark(name) Return a tuple (row,col) representing the position
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
450 of the named mark (can also get the []"<> marks)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
451 b.range(s,e) Return a range object (see |python-range|) which
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
452 represents the part of the given buffer between line
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
453 numbers s and e |inclusive|.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
454
20
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
455 Note that when adding a line it must not contain a line break character '\n'.
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
456 A trailing '\n' is allowed and ignored, so that you can do: >
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
457 :py b.append(f.readlines())
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
458
4496
ebd94eabfd80 updated for version 7.3.996
Bram Moolenaar <bram@vim.org>
parents: 4437
diff changeset
459 Buffer object type is available using "Buffer" attribute of vim module.
ebd94eabfd80 updated for version 7.3.996
Bram Moolenaar <bram@vim.org>
parents: 4437
diff changeset
460
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
461 Examples (assume b is the current buffer) >
20
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
462 :py print b.name # write the buffer file name
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
463 :py b[0] = "hello!!!" # replace the top line
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
464 :py b[:] = None # delete the whole buffer
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
465 :py del b[:] # delete the whole buffer
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
466 :py b[0:0] = [ "a line" ] # add a line at the top
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
467 :py del b[2] # delete a line (the third)
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
468 :py b.append("bottom") # add a line at the bottom
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
469 :py n = len(b) # number of lines
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
470 :py (row,col) = b.mark('a') # named mark
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
471 :py r = b.range(1,5) # a sub-range of the buffer
4323
f1eab4f77a6f updated for version 7.3.911
Bram Moolenaar <bram@vim.org>
parents: 4098
diff changeset
472 :py b.vars["foo"] = "bar" # assign b:foo variable
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
473 :py b.options["ff"] = "dos" # set fileformat
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
474 :py del b.options["ar"] # same as :set autoread<
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
475
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
476 ==============================================================================
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
477 4. Range objects *python-range*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
478
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
479 Range objects represent a part of a vim buffer. You can obtain them in a
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
480 number of ways:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
481 - via vim.current.range (|python-current|)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
482 - from a buffer's range() method (|python-buffer|)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
483
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
484 A range object is almost identical in operation to a buffer object. However,
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
485 all operations are restricted to the lines within the range (this line range
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
486 can, of course, change as a result of slice assignments, line deletions, or
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
487 the range.append() method).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
488
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
489 The range object attributes are:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
490 r.start Index of first line into the buffer
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
491 r.end Index of last line into the buffer
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
492
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
493 The range object methods are:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
494 r.append(str) Append a line to the range
2391
f1d95a986dfb Document extra argument for Python append().
Bram Moolenaar <bram@vim.org>
parents: 2366
diff changeset
495 r.append(str, nr) Idem, after line "nr"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
496 r.append(list) Append a list of lines to the range
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
497 Note that the option of supplying a list of strings to
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
498 the append method differs from the equivalent method
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
499 for Python's built-in list objects.
2391
f1d95a986dfb Document extra argument for Python append().
Bram Moolenaar <bram@vim.org>
parents: 2366
diff changeset
500 r.append(list, nr) Idem, after line "nr"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
501
4496
ebd94eabfd80 updated for version 7.3.996
Bram Moolenaar <bram@vim.org>
parents: 4437
diff changeset
502 Range object type is available using "Range" attribute of vim module.
ebd94eabfd80 updated for version 7.3.996
Bram Moolenaar <bram@vim.org>
parents: 4437
diff changeset
503
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
504 Example (assume r is the current range):
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
505 # Send all lines in a range to the default printer
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
506 vim.command("%d,%dhardcopy!" % (r.start+1,r.end+1))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
507
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
508 ==============================================================================
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
509 5. Window objects *python-window*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
510
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
511 Window objects represent vim windows. You can obtain them in a number of ways:
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
512 - via vim.current.window (|python-current|)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
513 - from indexing vim.windows (|python-windows|)
4401
cfd76908da25 updated for version 7.3.949
Bram Moolenaar <bram@vim.org>
parents: 4397
diff changeset
514 - from indexing "windows" attribute of a tab page (|python-tabpage|)
cfd76908da25 updated for version 7.3.949
Bram Moolenaar <bram@vim.org>
parents: 4397
diff changeset
515 - from the "window" attribute of a tab page (|python-tabpage|)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
516
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
517 You can manipulate window objects only through their attributes. They have no
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
518 methods, and no sequence or other interface.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
519
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
520 Window attributes are:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
521 buffer (read-only) The buffer displayed in this window
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
522 cursor (read-write) The current cursor position in the window
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
523 This is a tuple, (row,col).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
524 height (read-write) The window height, in rows
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
525 width (read-write) The window width, in columns
4323
f1eab4f77a6f updated for version 7.3.911
Bram Moolenaar <bram@vim.org>
parents: 4098
diff changeset
526 vars (read-only) The window |w:| variables. Attribute is
f1eab4f77a6f updated for version 7.3.911
Bram Moolenaar <bram@vim.org>
parents: 4098
diff changeset
527 unassignable, but you can change window
f1eab4f77a6f updated for version 7.3.911
Bram Moolenaar <bram@vim.org>
parents: 4098
diff changeset
528 variables this way
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
529 options (read-only) The window-local options. Attribute is
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
530 unassignable, but you can change window
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
531 options this way. Provides access only to
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
532 window-local options, for buffer-local use
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
533 |python-buffer| and for global ones use
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
534 |python-options|. If option is |global-local|
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
535 and local value is missing getting it will
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
536 return None.
4379
a2f03b41dca7 updated for version 7.3.938
Bram Moolenaar <bram@vim.org>
parents: 4358
diff changeset
537 number (read-only) Window number. The first window has number 1.
a2f03b41dca7 updated for version 7.3.938
Bram Moolenaar <bram@vim.org>
parents: 4358
diff changeset
538 This is zero in case it cannot be determined
a2f03b41dca7 updated for version 7.3.938
Bram Moolenaar <bram@vim.org>
parents: 4358
diff changeset
539 (e.g. when the window object belongs to other
a2f03b41dca7 updated for version 7.3.938
Bram Moolenaar <bram@vim.org>
parents: 4358
diff changeset
540 tab page).
4431
7d81f4e96728 updated for version 7.3.964
Bram Moolenaar <bram@vim.org>
parents: 4417
diff changeset
541 row, col (read-only) On-screen window position in display cells.
4383
e2db42528a5b updated for version 7.3.940
Bram Moolenaar <bram@vim.org>
parents: 4379
diff changeset
542 First position is zero.
4431
7d81f4e96728 updated for version 7.3.964
Bram Moolenaar <bram@vim.org>
parents: 4417
diff changeset
543 tabpage (read-only) Window tab page.
4780
2b11ac90d9e9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 4704
diff changeset
544 valid (read-write) True or False. Window object becomes invalid
4700
0c25fa1dfd97 updated for version 7.3.1097
Bram Moolenaar <bram@vim.org>
parents: 4698
diff changeset
545 when corresponding window is closed.
4383
e2db42528a5b updated for version 7.3.940
Bram Moolenaar <bram@vim.org>
parents: 4379
diff changeset
546
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
547 The height attribute is writable only if the screen is split horizontally.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
548 The width attribute is writable only if the screen is split vertically.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
549
4496
ebd94eabfd80 updated for version 7.3.996
Bram Moolenaar <bram@vim.org>
parents: 4437
diff changeset
550 Window object type is available using "Window" attribute of vim module.
ebd94eabfd80 updated for version 7.3.996
Bram Moolenaar <bram@vim.org>
parents: 4437
diff changeset
551
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
552 ==============================================================================
4401
cfd76908da25 updated for version 7.3.949
Bram Moolenaar <bram@vim.org>
parents: 4397
diff changeset
553 6. Tab page objects *python-tabpage*
cfd76908da25 updated for version 7.3.949
Bram Moolenaar <bram@vim.org>
parents: 4397
diff changeset
554
cfd76908da25 updated for version 7.3.949
Bram Moolenaar <bram@vim.org>
parents: 4397
diff changeset
555 Tab page objects represent vim tab pages. You can obtain them in a number of
cfd76908da25 updated for version 7.3.949
Bram Moolenaar <bram@vim.org>
parents: 4397
diff changeset
556 ways:
cfd76908da25 updated for version 7.3.949
Bram Moolenaar <bram@vim.org>
parents: 4397
diff changeset
557 - via vim.current.tabpage (|python-current|)
cfd76908da25 updated for version 7.3.949
Bram Moolenaar <bram@vim.org>
parents: 4397
diff changeset
558 - from indexing vim.tabpages (|python-tabpages|)
cfd76908da25 updated for version 7.3.949
Bram Moolenaar <bram@vim.org>
parents: 4397
diff changeset
559
cfd76908da25 updated for version 7.3.949
Bram Moolenaar <bram@vim.org>
parents: 4397
diff changeset
560 You can use this object to access tab page windows. They have no methods and
cfd76908da25 updated for version 7.3.949
Bram Moolenaar <bram@vim.org>
parents: 4397
diff changeset
561 no sequence or other interfaces.
cfd76908da25 updated for version 7.3.949
Bram Moolenaar <bram@vim.org>
parents: 4397
diff changeset
562
cfd76908da25 updated for version 7.3.949
Bram Moolenaar <bram@vim.org>
parents: 4397
diff changeset
563 Tab page attributes are:
cfd76908da25 updated for version 7.3.949
Bram Moolenaar <bram@vim.org>
parents: 4397
diff changeset
564 number The tab page number like the one returned by
cfd76908da25 updated for version 7.3.949
Bram Moolenaar <bram@vim.org>
parents: 4397
diff changeset
565 |tabpagenr()|.
cfd76908da25 updated for version 7.3.949
Bram Moolenaar <bram@vim.org>
parents: 4397
diff changeset
566 windows Like |python-windows|, but for current tab page.
cfd76908da25 updated for version 7.3.949
Bram Moolenaar <bram@vim.org>
parents: 4397
diff changeset
567 vars The tab page |t:| variables.
cfd76908da25 updated for version 7.3.949
Bram Moolenaar <bram@vim.org>
parents: 4397
diff changeset
568 window Current tabpage window.
4780
2b11ac90d9e9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 4704
diff changeset
569 valid True or False. Tab page object becomes invalid when
4700
0c25fa1dfd97 updated for version 7.3.1097
Bram Moolenaar <bram@vim.org>
parents: 4698
diff changeset
570 corresponding tab page is closed.
4401
cfd76908da25 updated for version 7.3.949
Bram Moolenaar <bram@vim.org>
parents: 4397
diff changeset
571
4496
ebd94eabfd80 updated for version 7.3.996
Bram Moolenaar <bram@vim.org>
parents: 4437
diff changeset
572 TabPage object type is available using "TabPage" attribute of vim module.
ebd94eabfd80 updated for version 7.3.996
Bram Moolenaar <bram@vim.org>
parents: 4437
diff changeset
573
4401
cfd76908da25 updated for version 7.3.949
Bram Moolenaar <bram@vim.org>
parents: 4397
diff changeset
574 ==============================================================================
4627
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
575 7. vim.bindeval objects *python-bindeval-objects*
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
576
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
577 vim.Dictionary object *python-Dictionary*
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
578 Dictionary-like object providing access to vim |Dictionary| type.
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
579 Attributes:
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
580 Attribute Description ~
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
581 locked One of *python-.locked*
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
582 Value Description ~
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
583 zero Variable is not locked
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
584 vim.VAR_LOCKED Variable is locked, but can be unlocked
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
585 vim.VAR_FIXED Variable is locked and can't be unlocked
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
586 Read-write. You can unlock locked variable by assigning
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
587 `True` or `False` to this attribute. No recursive locking
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
588 is supported.
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
589 scope One of
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
590 Value Description ~
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
591 zero Dictionary is not a scope one
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
592 vim.VAR_DEF_SCOPE |g:| or |l:| dictionary
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
593 vim.VAR_SCOPE Other scope dictionary,
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
594 see |internal-variables|
4639
52a4f66ae1f5 updated for version 7.3.1067
Bram Moolenaar <bram@vim.org>
parents: 4627
diff changeset
595 Methods (note: methods do not support keyword arguments):
4627
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
596 Method Description ~
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
597 keys() Returns a list with dictionary keys.
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
598 values() Returns a list with dictionary values.
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
599 items() Returns a list of 2-tuples with dictionary contents.
4639
52a4f66ae1f5 updated for version 7.3.1067
Bram Moolenaar <bram@vim.org>
parents: 4627
diff changeset
600 update(iterable), update(dictionary), update(**kwargs)
4627
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
601 Adds keys to dictionary.
4639
52a4f66ae1f5 updated for version 7.3.1067
Bram Moolenaar <bram@vim.org>
parents: 4627
diff changeset
602 get(key[, default=None])
52a4f66ae1f5 updated for version 7.3.1067
Bram Moolenaar <bram@vim.org>
parents: 4627
diff changeset
603 Obtain key from dictionary, returning the default if it is
52a4f66ae1f5 updated for version 7.3.1067
Bram Moolenaar <bram@vim.org>
parents: 4627
diff changeset
604 not present.
52a4f66ae1f5 updated for version 7.3.1067
Bram Moolenaar <bram@vim.org>
parents: 4627
diff changeset
605 pop(key[, default])
52a4f66ae1f5 updated for version 7.3.1067
Bram Moolenaar <bram@vim.org>
parents: 4627
diff changeset
606 Remove specified key from dictionary and return
52a4f66ae1f5 updated for version 7.3.1067
Bram Moolenaar <bram@vim.org>
parents: 4627
diff changeset
607 corresponding value. If key is not found and default is
52a4f66ae1f5 updated for version 7.3.1067
Bram Moolenaar <bram@vim.org>
parents: 4627
diff changeset
608 given returns the default, otherwise raises KeyError.
4698
2db005052371 updated for version 7.3.1096
Bram Moolenaar <bram@vim.org>
parents: 4681
diff changeset
609 popitem()
2db005052371 updated for version 7.3.1096
Bram Moolenaar <bram@vim.org>
parents: 4681
diff changeset
610 Remove random key from dictionary and return (key, value)
2db005052371 updated for version 7.3.1096
Bram Moolenaar <bram@vim.org>
parents: 4681
diff changeset
611 pair.
4639
52a4f66ae1f5 updated for version 7.3.1067
Bram Moolenaar <bram@vim.org>
parents: 4627
diff changeset
612 has_key(key)
52a4f66ae1f5 updated for version 7.3.1067
Bram Moolenaar <bram@vim.org>
parents: 4627
diff changeset
613 Check whether dictionary contains specified key, similar
52a4f66ae1f5 updated for version 7.3.1067
Bram Moolenaar <bram@vim.org>
parents: 4627
diff changeset
614 to `key in dict`.
52a4f66ae1f5 updated for version 7.3.1067
Bram Moolenaar <bram@vim.org>
parents: 4627
diff changeset
615
52a4f66ae1f5 updated for version 7.3.1067
Bram Moolenaar <bram@vim.org>
parents: 4627
diff changeset
616 __new__(), __new__(iterable), __new__(dictionary), __new__(update)
52a4f66ae1f5 updated for version 7.3.1067
Bram Moolenaar <bram@vim.org>
parents: 4627
diff changeset
617 You can use `vim.Dictionary()` to create new vim
52a4f66ae1f5 updated for version 7.3.1067
Bram Moolenaar <bram@vim.org>
parents: 4627
diff changeset
618 dictionaries. `d=vim.Dictionary(arg)` is the same as
52a4f66ae1f5 updated for version 7.3.1067
Bram Moolenaar <bram@vim.org>
parents: 4627
diff changeset
619 `d=vim.bindeval('{}');d.update(arg)`. Without arguments
52a4f66ae1f5 updated for version 7.3.1067
Bram Moolenaar <bram@vim.org>
parents: 4627
diff changeset
620 constructs empty dictionary.
52a4f66ae1f5 updated for version 7.3.1067
Bram Moolenaar <bram@vim.org>
parents: 4627
diff changeset
621
4627
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
622 Examples: >
4639
52a4f66ae1f5 updated for version 7.3.1067
Bram Moolenaar <bram@vim.org>
parents: 4627
diff changeset
623 d = vim.Dictionary(food="bar") # Constructor
4627
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
624 d['a'] = 'b' # Item assignment
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
625 print d['a'] # getting item
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
626 d.update({'c': 'd'}) # .update(dictionary)
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
627 d.update(e='f') # .update(**kwargs)
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
628 d.update((('g', 'h'), ('i', 'j'))) # .update(iterable)
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
629 for key in d.keys(): # .keys()
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
630 for val in d.values(): # .values()
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
631 for key, val in d.items(): # .items()
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
632 print isinstance(d, vim.Dictionary) # True
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
633 for key in d: # Iteration over keys
4639
52a4f66ae1f5 updated for version 7.3.1067
Bram Moolenaar <bram@vim.org>
parents: 4627
diff changeset
634 class Dict(vim.Dictionary): # Subclassing
4627
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
635 <
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
636 Note: when iterating over keys you should not modify dictionary.
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
637
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
638 vim.List object *python-List*
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
639 Sequence-like object providing access to vim |List| type.
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
640 Supports `.locked` attribute, see |python-.locked|. Also supports the
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
641 following methods:
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
642 Method Description ~
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
643 extend(item) Add items to the list.
4639
52a4f66ae1f5 updated for version 7.3.1067
Bram Moolenaar <bram@vim.org>
parents: 4627
diff changeset
644
52a4f66ae1f5 updated for version 7.3.1067
Bram Moolenaar <bram@vim.org>
parents: 4627
diff changeset
645 __new__(), __new__(iterable)
52a4f66ae1f5 updated for version 7.3.1067
Bram Moolenaar <bram@vim.org>
parents: 4627
diff changeset
646 You can use `vim.List()` to create new vim lists.
52a4f66ae1f5 updated for version 7.3.1067
Bram Moolenaar <bram@vim.org>
parents: 4627
diff changeset
647 `l=vim.List(iterable)` is the same as
52a4f66ae1f5 updated for version 7.3.1067
Bram Moolenaar <bram@vim.org>
parents: 4627
diff changeset
648 `l=vim.bindeval('[]');l.extend(iterable)`. Without
52a4f66ae1f5 updated for version 7.3.1067
Bram Moolenaar <bram@vim.org>
parents: 4627
diff changeset
649 arguments constructs empty list.
4627
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
650 Examples: >
4639
52a4f66ae1f5 updated for version 7.3.1067
Bram Moolenaar <bram@vim.org>
parents: 4627
diff changeset
651 l = vim.List("abc") # Constructor, result: ['a', 'b', 'c']
4627
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
652 l.extend(['abc', 'def']) # .extend() method
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
653 print l[1:] # slicing
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
654 l[:0] = ['ghi', 'jkl'] # slice assignment
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
655 print l[0] # getting item
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
656 l[0] = 'mno' # assignment
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
657 for i in l: # iteration
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
658 print isinstance(l, vim.List) # True
4639
52a4f66ae1f5 updated for version 7.3.1067
Bram Moolenaar <bram@vim.org>
parents: 4627
diff changeset
659 class List(vim.List): # Subclassing
4627
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
660
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
661 vim.Function object *python-Function*
8889
8755d57debaa commit https://github.com/vim/vim/commit/8110a091bc749d8748a20807a724a3af3ca6d509
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
662 Function-like object, acting like vim |Funcref| object. Accepts special
8755d57debaa commit https://github.com/vim/vim/commit/8110a091bc749d8748a20807a724a3af3ca6d509
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
663 keyword argument `self`, see |Dictionary-function|. You can also use
8755d57debaa commit https://github.com/vim/vim/commit/8110a091bc749d8748a20807a724a3af3ca6d509
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
664 `vim.Function(name)` constructor, it is the same as
8755d57debaa commit https://github.com/vim/vim/commit/8110a091bc749d8748a20807a724a3af3ca6d509
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
665 `vim.bindeval('function(%s)'%json.dumps(name))`.
8755d57debaa commit https://github.com/vim/vim/commit/8110a091bc749d8748a20807a724a3af3ca6d509
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
666
8755d57debaa commit https://github.com/vim/vim/commit/8110a091bc749d8748a20807a724a3af3ca6d509
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
667 Attributes (read-only):
9119
39cc63e8df7c commit https://github.com/vim/vim/commit/2177f9fe18a927ef65ccebb0856722a28dc00252
Christian Brabandt <cb@256bit.org>
parents: 8951
diff changeset
668 Attribute Description ~
39cc63e8df7c commit https://github.com/vim/vim/commit/2177f9fe18a927ef65ccebb0856722a28dc00252
Christian Brabandt <cb@256bit.org>
parents: 8951
diff changeset
669 name Function name.
39cc63e8df7c commit https://github.com/vim/vim/commit/2177f9fe18a927ef65ccebb0856722a28dc00252
Christian Brabandt <cb@256bit.org>
parents: 8951
diff changeset
670 args `None` or a |python-List| object with arguments. Note
39cc63e8df7c commit https://github.com/vim/vim/commit/2177f9fe18a927ef65ccebb0856722a28dc00252
Christian Brabandt <cb@256bit.org>
parents: 8951
diff changeset
671 that this is a copy of the arguments list, constructed
39cc63e8df7c commit https://github.com/vim/vim/commit/2177f9fe18a927ef65ccebb0856722a28dc00252
Christian Brabandt <cb@256bit.org>
parents: 8951
diff changeset
672 each time you request this attribute. Modifications made
39cc63e8df7c commit https://github.com/vim/vim/commit/2177f9fe18a927ef65ccebb0856722a28dc00252
Christian Brabandt <cb@256bit.org>
parents: 8951
diff changeset
673 to the list will be ignored (but not to the containers
39cc63e8df7c commit https://github.com/vim/vim/commit/2177f9fe18a927ef65ccebb0856722a28dc00252
Christian Brabandt <cb@256bit.org>
parents: 8951
diff changeset
674 inside argument list: this is like |copy()| and not
39cc63e8df7c commit https://github.com/vim/vim/commit/2177f9fe18a927ef65ccebb0856722a28dc00252
Christian Brabandt <cb@256bit.org>
parents: 8951
diff changeset
675 |deepcopy()|).
39cc63e8df7c commit https://github.com/vim/vim/commit/2177f9fe18a927ef65ccebb0856722a28dc00252
Christian Brabandt <cb@256bit.org>
parents: 8951
diff changeset
676 self `None` or a |python-Dictionary| object with self
39cc63e8df7c commit https://github.com/vim/vim/commit/2177f9fe18a927ef65ccebb0856722a28dc00252
Christian Brabandt <cb@256bit.org>
parents: 8951
diff changeset
677 dictionary. Note that explicit `self` keyword used when
39cc63e8df7c commit https://github.com/vim/vim/commit/2177f9fe18a927ef65ccebb0856722a28dc00252
Christian Brabandt <cb@256bit.org>
parents: 8951
diff changeset
678 calling resulting object overrides this attribute.
39cc63e8df7c commit https://github.com/vim/vim/commit/2177f9fe18a927ef65ccebb0856722a28dc00252
Christian Brabandt <cb@256bit.org>
parents: 8951
diff changeset
679 auto_rebind Boolean. True if partial created from this Python object
10942
e05695e59f6d patch 8.0.0360: sometimes VimL is used instead of "Vim script"
Christian Brabandt <cb@256bit.org>
parents: 10895
diff changeset
680 and stored in the Vim script dictionary should be
e05695e59f6d patch 8.0.0360: sometimes VimL is used instead of "Vim script"
Christian Brabandt <cb@256bit.org>
parents: 10895
diff changeset
681 automatically rebound to the dictionary it is stored in
e05695e59f6d patch 8.0.0360: sometimes VimL is used instead of "Vim script"
Christian Brabandt <cb@256bit.org>
parents: 10895
diff changeset
682 when this dictionary is indexed. Exposes Vim internal
e05695e59f6d patch 8.0.0360: sometimes VimL is used instead of "Vim script"
Christian Brabandt <cb@256bit.org>
parents: 10895
diff changeset
683 difference between `dict.func` (auto_rebind=True) and
e05695e59f6d patch 8.0.0360: sometimes VimL is used instead of "Vim script"
Christian Brabandt <cb@256bit.org>
parents: 10895
diff changeset
684 `function(dict.func,dict)` (auto_rebind=False). This
9119
39cc63e8df7c commit https://github.com/vim/vim/commit/2177f9fe18a927ef65ccebb0856722a28dc00252
Christian Brabandt <cb@256bit.org>
parents: 8951
diff changeset
685 attribute makes no sense if `self` attribute is `None`.
8889
8755d57debaa commit https://github.com/vim/vim/commit/8110a091bc749d8748a20807a724a3af3ca6d509
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
686
9119
39cc63e8df7c commit https://github.com/vim/vim/commit/2177f9fe18a927ef65ccebb0856722a28dc00252
Christian Brabandt <cb@256bit.org>
parents: 8951
diff changeset
687 Constructor additionally accepts `args`, `self` and `auto_rebind`
39cc63e8df7c commit https://github.com/vim/vim/commit/2177f9fe18a927ef65ccebb0856722a28dc00252
Christian Brabandt <cb@256bit.org>
parents: 8951
diff changeset
688 keywords. If `args` and/or `self` argument is given then it constructs
39cc63e8df7c commit https://github.com/vim/vim/commit/2177f9fe18a927ef65ccebb0856722a28dc00252
Christian Brabandt <cb@256bit.org>
parents: 8951
diff changeset
689 a partial, see |function()|. `auto_rebind` is only used when `self`
39cc63e8df7c commit https://github.com/vim/vim/commit/2177f9fe18a927ef65ccebb0856722a28dc00252
Christian Brabandt <cb@256bit.org>
parents: 8951
diff changeset
690 argument is given, otherwise it is assumed to be `True` regardless of
39cc63e8df7c commit https://github.com/vim/vim/commit/2177f9fe18a927ef65ccebb0856722a28dc00252
Christian Brabandt <cb@256bit.org>
parents: 8951
diff changeset
691 whether it was given or not. If `self` is given then it defaults to
39cc63e8df7c commit https://github.com/vim/vim/commit/2177f9fe18a927ef65ccebb0856722a28dc00252
Christian Brabandt <cb@256bit.org>
parents: 8951
diff changeset
692 `False`.
4639
52a4f66ae1f5 updated for version 7.3.1067
Bram Moolenaar <bram@vim.org>
parents: 4627
diff changeset
693
4627
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
694 Examples: >
4639
52a4f66ae1f5 updated for version 7.3.1067
Bram Moolenaar <bram@vim.org>
parents: 4627
diff changeset
695 f = vim.Function('tr') # Constructor
4627
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
696 print f('abc', 'a', 'b') # Calls tr('abc', 'a', 'b')
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
697 vim.command('''
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
698 function DictFun() dict
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
699 return self
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
700 endfunction
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
701 ''')
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
702 f = vim.bindeval('function("DictFun")')
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
703 print f(self={}) # Like call('DictFun', [], {})
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
704 print isinstance(f, vim.Function) # True
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
705
8889
8755d57debaa commit https://github.com/vim/vim/commit/8110a091bc749d8748a20807a724a3af3ca6d509
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
706 p = vim.Function('DictFun', self={})
8755d57debaa commit https://github.com/vim/vim/commit/8110a091bc749d8748a20807a724a3af3ca6d509
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
707 print f()
8755d57debaa commit https://github.com/vim/vim/commit/8110a091bc749d8748a20807a724a3af3ca6d509
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
708 p = vim.Function('tr', args=['abc', 'a'])
8755d57debaa commit https://github.com/vim/vim/commit/8110a091bc749d8748a20807a724a3af3ca6d509
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
709 print f('b')
8755d57debaa commit https://github.com/vim/vim/commit/8110a091bc749d8748a20807a724a3af3ca6d509
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
710
4627
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
711 ==============================================================================
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
712 8. pyeval() and py3eval() Vim functions *python-pyeval*
3682
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
713
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
714 To facilitate bi-directional interface, you can use |pyeval()| and |py3eval()|
10942
e05695e59f6d patch 8.0.0360: sometimes VimL is used instead of "Vim script"
Christian Brabandt <cb@256bit.org>
parents: 10895
diff changeset
715 functions to evaluate Python expressions and pass their values to Vim script.
10722
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
716 |pyxeval()| is also available.
3682
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
717
12806
ef93c4415667 patch 8.0.1280: Python None cannot be converted to a Vim type
Christian Brabandt <cb@256bit.org>
parents: 12045
diff changeset
718 The Python value "None" is converted to v:none.
ef93c4415667 patch 8.0.1280: Python None cannot be converted to a Vim type
Christian Brabandt <cb@256bit.org>
parents: 12045
diff changeset
719
3682
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
720 ==============================================================================
4627
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
721 9. Dynamic loading *python-dynamic*
557
862863033fdd updated for version 7.0158
vimboss
parents: 236
diff changeset
722
7196
42717d048817 commit https://github.com/vim/vim/commit/d94464ee294a351ce7b6ba18e8bd3f24f1bef920
Christian Brabandt <cb@256bit.org>
parents: 6091
diff changeset
723 On MS-Windows and Unix the Python library can be loaded dynamically. The
42717d048817 commit https://github.com/vim/vim/commit/d94464ee294a351ce7b6ba18e8bd3f24f1bef920
Christian Brabandt <cb@256bit.org>
parents: 6091
diff changeset
724 |:version| output then includes |+python/dyn| or |+python3/dyn|.
557
862863033fdd updated for version 7.0158
vimboss
parents: 236
diff changeset
725
7196
42717d048817 commit https://github.com/vim/vim/commit/d94464ee294a351ce7b6ba18e8bd3f24f1bef920
Christian Brabandt <cb@256bit.org>
parents: 6091
diff changeset
726 This means that Vim will search for the Python DLL or shared library file only
42717d048817 commit https://github.com/vim/vim/commit/d94464ee294a351ce7b6ba18e8bd3f24f1bef920
Christian Brabandt <cb@256bit.org>
parents: 6091
diff changeset
727 when needed. When you don't use the Python interface you don't need it, thus
42717d048817 commit https://github.com/vim/vim/commit/d94464ee294a351ce7b6ba18e8bd3f24f1bef920
Christian Brabandt <cb@256bit.org>
parents: 6091
diff changeset
728 you can use Vim without this file.
557
862863033fdd updated for version 7.0158
vimboss
parents: 236
diff changeset
729
8673
ed7251c3e2d3 commit https://github.com/vim/vim/commit/e18c0b39815c5a746887a509c2cd9f11fadaba07
Christian Brabandt <cb@256bit.org>
parents: 7228
diff changeset
730
ed7251c3e2d3 commit https://github.com/vim/vim/commit/e18c0b39815c5a746887a509c2cd9f11fadaba07
Christian Brabandt <cb@256bit.org>
parents: 7228
diff changeset
731 MS-Windows ~
ed7251c3e2d3 commit https://github.com/vim/vim/commit/e18c0b39815c5a746887a509c2cd9f11fadaba07
Christian Brabandt <cb@256bit.org>
parents: 7228
diff changeset
732
ed7251c3e2d3 commit https://github.com/vim/vim/commit/e18c0b39815c5a746887a509c2cd9f11fadaba07
Christian Brabandt <cb@256bit.org>
parents: 7228
diff changeset
733 To use the Python interface the Python DLL must be in your search path. In a
ed7251c3e2d3 commit https://github.com/vim/vim/commit/e18c0b39815c5a746887a509c2cd9f11fadaba07
Christian Brabandt <cb@256bit.org>
parents: 7228
diff changeset
734 console window type "path" to see what directories are used. The 'pythondll'
ed7251c3e2d3 commit https://github.com/vim/vim/commit/e18c0b39815c5a746887a509c2cd9f11fadaba07
Christian Brabandt <cb@256bit.org>
parents: 7228
diff changeset
735 or 'pythonthreedll' option can be also used to specify the Python DLL.
557
862863033fdd updated for version 7.0158
vimboss
parents: 236
diff changeset
736
10895
c391bfbdb452 Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10734
diff changeset
737 The name of the DLL should match the Python version Vim was compiled with.
c391bfbdb452 Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10734
diff changeset
738 Currently the name for Python 2 is "python27.dll", that is for Python 2.7.
c391bfbdb452 Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10734
diff changeset
739 That is the default value for 'pythondll'. For Python 3 it is python35.dll
c391bfbdb452 Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10734
diff changeset
740 (Python 3.5). To know for sure edit "gvim.exe" and search for
c391bfbdb452 Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10734
diff changeset
741 "python\d*.dll\c".
557
862863033fdd updated for version 7.0158
vimboss
parents: 236
diff changeset
742
8673
ed7251c3e2d3 commit https://github.com/vim/vim/commit/e18c0b39815c5a746887a509c2cd9f11fadaba07
Christian Brabandt <cb@256bit.org>
parents: 7228
diff changeset
743
ed7251c3e2d3 commit https://github.com/vim/vim/commit/e18c0b39815c5a746887a509c2cd9f11fadaba07
Christian Brabandt <cb@256bit.org>
parents: 7228
diff changeset
744 Unix ~
ed7251c3e2d3 commit https://github.com/vim/vim/commit/e18c0b39815c5a746887a509c2cd9f11fadaba07
Christian Brabandt <cb@256bit.org>
parents: 7228
diff changeset
745
ed7251c3e2d3 commit https://github.com/vim/vim/commit/e18c0b39815c5a746887a509c2cd9f11fadaba07
Christian Brabandt <cb@256bit.org>
parents: 7228
diff changeset
746 The 'pythondll' or 'pythonthreedll' option can be used to specify the Python
ed7251c3e2d3 commit https://github.com/vim/vim/commit/e18c0b39815c5a746887a509c2cd9f11fadaba07
Christian Brabandt <cb@256bit.org>
parents: 7228
diff changeset
747 shared library file instead of DYNAMIC_PYTHON_DLL or DYNAMIC_PYTHON3_DLL file
ed7251c3e2d3 commit https://github.com/vim/vim/commit/e18c0b39815c5a746887a509c2cd9f11fadaba07
Christian Brabandt <cb@256bit.org>
parents: 7228
diff changeset
748 what were specified at compile time. The version of the shared library must
ed7251c3e2d3 commit https://github.com/vim/vim/commit/e18c0b39815c5a746887a509c2cd9f11fadaba07
Christian Brabandt <cb@256bit.org>
parents: 7228
diff changeset
749 match the Python 2.x or Python 3 version Vim was compiled with.
7196
42717d048817 commit https://github.com/vim/vim/commit/d94464ee294a351ce7b6ba18e8bd3f24f1bef920
Christian Brabandt <cb@256bit.org>
parents: 6091
diff changeset
750
557
862863033fdd updated for version 7.0158
vimboss
parents: 236
diff changeset
751 ==============================================================================
4627
18ba89e06fab updated for version 7.3.1061
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
752 10. Python 3 *python3*
2340
99c1eba60b2d Make automatic prototype generation work with more interfaces.
Bram Moolenaar <bram@vim.org>
parents: 2154
diff changeset
753
2560
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
754 *:py3* *:python3*
4435
9b800f0a757f updated for version 7.3.966
Bram Moolenaar <bram@vim.org>
parents: 4431
diff changeset
755 The `:py3` and `:python3` commands work similar to `:python`. A simple check
4098
058f26a834c4 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 4073
diff changeset
756 if the `:py3` command is working: >
3750
536aa8b0c934 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3682
diff changeset
757 :py3 print("Hello")
10218
584c835a2de1 commit https://github.com/vim/vim/commit/50ba526fbf3e9e5e0e6b0b3086a4d5df581ebc7e
Christian Brabandt <cb@256bit.org>
parents: 10198
diff changeset
758
10140
b11ceef7116e commit https://github.com/vim/vim/commit/64d8e25bf6efe5f18b032563521c3ce278c316ab
Christian Brabandt <cb@256bit.org>
parents: 9119
diff changeset
759 To see what version of Python you have: >
b11ceef7116e commit https://github.com/vim/vim/commit/64d8e25bf6efe5f18b032563521c3ce278c316ab
Christian Brabandt <cb@256bit.org>
parents: 9119
diff changeset
760 :py3 import sys
b11ceef7116e commit https://github.com/vim/vim/commit/64d8e25bf6efe5f18b032563521c3ce278c316ab
Christian Brabandt <cb@256bit.org>
parents: 9119
diff changeset
761 :py3 print(sys.version)
10218
584c835a2de1 commit https://github.com/vim/vim/commit/50ba526fbf3e9e5e0e6b0b3086a4d5df581ebc7e
Christian Brabandt <cb@256bit.org>
parents: 10198
diff changeset
762 < *:py3file*
4435
9b800f0a757f updated for version 7.3.966
Bram Moolenaar <bram@vim.org>
parents: 4431
diff changeset
763 The `:py3file` command works similar to `:pyfile`.
8951
0bdeaf7092bc commit https://github.com/vim/vim/commit/aa3b15dbebf333282503d6031e2f9ba6ee4398ed
Christian Brabandt <cb@256bit.org>
parents: 8889
diff changeset
764 *:py3do*
4435
9b800f0a757f updated for version 7.3.966
Bram Moolenaar <bram@vim.org>
parents: 4431
diff changeset
765 The `:py3do` command works similar to `:pydo`.
4417
c16602758d84 updated for version 7.3.957
Bram Moolenaar <bram@vim.org>
parents: 4407
diff changeset
766
3682
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
767
2409
0ca06a92adfb Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents: 2391
diff changeset
768 Vim can be built in four ways (:version output):
2560
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
769 1. No Python support (-python, -python3)
2409
0ca06a92adfb Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents: 2391
diff changeset
770 2. Python 2 support only (+python or +python/dyn, -python3)
0ca06a92adfb Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents: 2391
diff changeset
771 3. Python 3 support only (-python, +python3 or +python3/dyn)
0ca06a92adfb Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents: 2391
diff changeset
772 4. Python 2 and 3 support (+python/dyn, +python3/dyn)
2340
99c1eba60b2d Make automatic prototype generation work with more interfaces.
Bram Moolenaar <bram@vim.org>
parents: 2154
diff changeset
773
5220
050893d44c33 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5146
diff changeset
774 Some more details on the special case 4: *python-2-and-3*
2560
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
775
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
776 When Python 2 and Python 3 are both supported they must be loaded dynamically.
2540
9397d2d76340 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 2527
diff changeset
777
2560
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
778 When doing this on Linux/Unix systems and importing global symbols, this leads
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
779 to a crash when the second Python version is used. So either global symbols
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
780 are loaded but only one Python version is activated, or no global symbols are
2608
7d8af31066c8 Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
781 loaded. The latter makes Python's "import" fail on libraries that expect the
2560
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
782 symbols to be provided by Vim.
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
783 *E836* *E837*
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
784 Vim's configuration script makes a guess for all libraries based on one
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
785 standard Python library (termios). If importing this library succeeds for
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
786 both Python versions, then both will be made available in Vim at the same
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
787 time. If not, only the version first used in a session will be enabled.
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
788 When trying to use the other one you will get the E836 or E837 error message.
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
789
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
790 Here Vim's behavior depends on the system in which it was configured. In a
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
791 system where both versions of Python were configured with --enable-shared,
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
792 both versions of Python will be activated at the same time. There will still
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
793 be problems with other third party libraries that were not linked to
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
794 libPython.
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
795
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
796 To work around such problems there are these options:
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
797 1. The problematic library is recompiled to link to the according
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
798 libpython.so.
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
799 2. Vim is recompiled for only one Python version.
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
800 3. You undefine PY_NO_RTLD_GLOBAL in auto/config.h after configuration. This
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
801 may crash Vim though.
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
802
5088
34c629c3b4ba updated for version 7.3.1287
Bram Moolenaar <bram@vim.org>
parents: 5055
diff changeset
803 *E880*
34c629c3b4ba updated for version 7.3.1287
Bram Moolenaar <bram@vim.org>
parents: 5055
diff changeset
804 Raising SystemExit exception in python isn't endorsed way to quit vim, use: >
34c629c3b4ba updated for version 7.3.1287
Bram Moolenaar <bram@vim.org>
parents: 5055
diff changeset
805 :py vim.command("qall!")
34c629c3b4ba updated for version 7.3.1287
Bram Moolenaar <bram@vim.org>
parents: 5055
diff changeset
806 <
34c629c3b4ba updated for version 7.3.1287
Bram Moolenaar <bram@vim.org>
parents: 5055
diff changeset
807
2826
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2608
diff changeset
808 *has-python*
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2608
diff changeset
809 You can test what Python version is available with: >
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2608
diff changeset
810 if has('python')
3082
3502a7f991fc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2826
diff changeset
811 echo 'there is Python 2.x'
2826
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2608
diff changeset
812 elseif has('python3')
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2608
diff changeset
813 echo 'there is Python 3.x'
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2608
diff changeset
814 endif
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2608
diff changeset
815
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2608
diff changeset
816 Note however, that when Python 2 and 3 are both available and loaded
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2608
diff changeset
817 dynamically, these has() calls will try to load them. If only one can be
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2608
diff changeset
818 loaded at a time, just checking if Python 2 or 3 are available will prevent
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2608
diff changeset
819 the other one from being available.
2340
99c1eba60b2d Make automatic prototype generation work with more interfaces.
Bram Moolenaar <bram@vim.org>
parents: 2154
diff changeset
820
99c1eba60b2d Make automatic prototype generation work with more interfaces.
Bram Moolenaar <bram@vim.org>
parents: 2154
diff changeset
821 ==============================================================================
10722
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
822 11. Python X *python_x* *pythonx*
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
823
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
824 Because most python code can be written so that it works with python 2.6+ and
11062
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents: 10942
diff changeset
825 python 3 the pyx* functions and commands have been written. They work exactly
10722
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
826 the same as the Python 2 and 3 variants, but select the Python version using
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
827 the 'pyxversion' setting.
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
828
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
829 You should set 'pyxversion' in your |.vimrc| to prefer Python 2 or Python 3
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
830 for Python commands. If you change this setting at runtime you may risk that
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
831 state of plugins (such as initialization) may be lost.
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
832
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
833 If you want to use a module, you can put it in the {rtp}/pythonx directory.
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
834 See |pythonx-directory|.
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
835
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
836 *:pyx* *:pythonx*
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
837 The `:pyx` and `:pythonx` commands work similar to `:python`. A simple check
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
838 if the `:pyx` command is working: >
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
839 :pyx print("Hello")
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
840
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
841 To see what version of Python is being used: >
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
842 :pyx import sys
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
843 :pyx print(sys.version)
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
844 <
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
845 *:pyxfile* *python_x-special-comments*
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
846 The `:pyxfile` command works similar to `:pyfile`. However you can add one of
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
847 these comments to force Vim using `:pyfile` or `:py3file`: >
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
848 #!/any string/python2 " Shebang. Must be the first line of the file.
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
849 #!/any string/python3 " Shebang. Must be the first line of the file.
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
850 # requires python 2.x " Maximum lines depend on 'modelines'.
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
851 # requires python 3.x " Maximum lines depend on 'modelines'.
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
852 Unlike normal modelines, the bottom of the file is not checked.
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
853 If none of them are found, the 'pyxversion' setting is used.
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
854 *W20* *W21*
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
855 If Vim does not support the selected Python version a silent message will be
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
856 printed. Use `:messages` to read them.
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
857
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
858 *:pyxdo*
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
859 The `:pyxdo` command works similar to `:pydo`.
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
860
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
861 *has-pythonx*
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
862 You can test if pyx* commands are available with: >
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
863 if has('pythonx')
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
864 echo 'pyx* commands are available. (Python ' . &pyx . ')'
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
865 endif
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
866
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
867 When compiled with only one of |+python| or |+python3|, the has() returns 1.
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
868 When compiled with both |+python| and |+python3|, the test depends on the
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
869 'pyxversion' setting. If 'pyxversion' is 0, it tests Python 3 first, and if
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
870 it is not available then Python 2. If 'pyxversion' is 2 or 3, it tests only
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
871 Python 2 or 3 respectively.
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
872
11062
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents: 10942
diff changeset
873 Note that for `has('pythonx')` to work it may try to dynamically load Python 3
10722
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
874 or 2. This may have side effects, especially when Vim can only load one of
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
875 the two.
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
876
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
877 If a user prefers Python 2 and want to fallback to Python 3, he needs to set
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
878 'pyxversion' explicitly in his |.vimrc|. E.g.: >
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
879 if has('python')
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
880 set pyx=2
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
881 elseif has('python3')
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
882 set pyx=3
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
883 endif
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
884
7598ce51bf2a patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
885 ==============================================================================
11160
d0a20101ecb2 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11062
diff changeset
886 12. Building with Python support *python-building*
d0a20101ecb2 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11062
diff changeset
887
d0a20101ecb2 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11062
diff changeset
888 A few hints for building with Python 2 or 3 support.
d0a20101ecb2 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11062
diff changeset
889
d0a20101ecb2 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11062
diff changeset
890 UNIX
d0a20101ecb2 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11062
diff changeset
891
d0a20101ecb2 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11062
diff changeset
892 See src/Makefile for how to enable including the Python interface.
d0a20101ecb2 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11062
diff changeset
893
d0a20101ecb2 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11062
diff changeset
894 On Ubuntu you will want to install these packages for Python 2:
d0a20101ecb2 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11062
diff changeset
895 python
d0a20101ecb2 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11062
diff changeset
896 python-dev
d0a20101ecb2 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11062
diff changeset
897 For Python 3:
d0a20101ecb2 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11062
diff changeset
898 python3
12045
444ad56c0cac Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11160
diff changeset
899 python3-dev
11160
d0a20101ecb2 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11062
diff changeset
900 For Python 3.6:
d0a20101ecb2 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11062
diff changeset
901 python3.6
12045
444ad56c0cac Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11160
diff changeset
902 python3.6-dev
11160
d0a20101ecb2 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11062
diff changeset
903
d0a20101ecb2 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11062
diff changeset
904 If you have more than one version of Python 3, you need to link python3 to the
d0a20101ecb2 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11062
diff changeset
905 one you prefer, before running configure.
d0a20101ecb2 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11062
diff changeset
906
d0a20101ecb2 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11062
diff changeset
907 ==============================================================================
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
908 vim:tw=78:ts=8:ft=help:norl: