blob: d37bd49f4f9fbf83fbd306ca0ca1b00eb5e0b622 [file] [log] [blame]
Bram Moolenaar543b7ef2013-06-01 14:50:56 +02001*if_pyth.txt* For Vim version 7.3. Last change: 2013 May 25
Bram Moolenaar071d4272004-06-13 20:20:40 +00002
3
4 VIM REFERENCE MANUAL by Paul Moore
5
6
7The Python Interface to Vim *python* *Python*
8
Bram Moolenaar30b65812012-07-12 22:01:11 +020091. Commands |python-commands|
102. The vim module |python-vim|
113. Buffer objects |python-buffer|
124. Range objects |python-range|
135. Window objects |python-window|
Bram Moolenaarcac867a2013-05-21 19:50:34 +0200146. Tab page objects |python-tabpage|
Bram Moolenaara9922d62013-05-30 13:01:18 +0200157. vim.bindeval objects |python-bindeval-objects|
168. pyeval(), py3eval() Vim functions |python-pyeval|
179. Dynamic loading |python-dynamic|
1810. Python 3 |python3|
Bram Moolenaar071d4272004-06-13 20:20:40 +000019
20{Vi does not have any of these commands}
21
Bram Moolenaar368373e2010-07-19 20:46:22 +020022The Python 2.x interface is available only when Vim was compiled with the
Bram Moolenaar071d4272004-06-13 20:20:40 +000023|+python| feature.
Bram Moolenaar368373e2010-07-19 20:46:22 +020024The Python 3 interface is available only when Vim was compiled with the
25|+python3| feature.
Bram Moolenaar071d4272004-06-13 20:20:40 +000026
27==============================================================================
281. Commands *python-commands*
29
30 *:python* *:py* *E205* *E263* *E264*
31:[range]py[thon] {stmt}
Bram Moolenaar9b451252012-08-15 17:43:31 +020032 Execute Python statement {stmt}. A simple check if
33 the `:python` command is working: >
34 :python print "Hello"
Bram Moolenaar071d4272004-06-13 20:20:40 +000035
36:[range]py[thon] << {endmarker}
37{script}
38{endmarker}
39 Execute Python script {script}.
40 Note: This command doesn't work when the Python
41 feature wasn't compiled in. To avoid errors, see
42 |script-here|.
43
44{endmarker} must NOT be preceded by any white space. If {endmarker} is
45omitted from after the "<<", a dot '.' must be used after {script}, like
46for the |:append| and |:insert| commands.
47This form of the |:python| command is mainly useful for including python code
48in Vim scripts.
49
50Example: >
51 function! IcecreamInitialize()
52 python << EOF
53 class StrawberryIcecream:
54 def __call__(self):
55 print 'EAT ME'
56 EOF
57 endfunction
58<
Bram Moolenaara3e6bc92013-01-30 14:18:00 +010059Note: Python is very sensitive to the indenting. Make sure the "class" line
60and "EOF" do not have any indent.
Bram Moolenaar071d4272004-06-13 20:20:40 +000061
Bram Moolenaard620aa92013-05-17 16:40:06 +020062 *:pydo*
63:[range]pydo {body} Execute Python function "def _vim_pydo(line, linenr):
64 {body}" for each line in the [range], with the
65 function arguments being set to the text of each line
66 in turn, without a trailing <EOL>, and the current
67 line number. The function should return a string or
68 None. If a string is returned, it becomes the text of
69 the line in the current turn. The default for [range]
70 is the whole file: "1,$".
71 {not in Vi}
72
73Examples:
74>
75 :pydo return "%s\t%d" % (line[::-1], len(line))
76 :pydo if line: return "%4d: %s" % (linenr, line)
77<
Bram Moolenaar071d4272004-06-13 20:20:40 +000078 *:pyfile* *:pyf*
79:[range]pyf[ile] {file}
80 Execute the Python script in {file}. The whole
81 argument is used as a single file name. {not in Vi}
82
83Both of these commands do essentially the same thing - they execute a piece of
84Python code, with the "current range" |python-range| set to the given line
85range.
86
87In the case of :python, the code to execute is in the command-line.
88In the case of :pyfile, the code to execute is the contents of the given file.
89
90Python commands cannot be used in the |sandbox|.
91
92To pass arguments you need to set sys.argv[] explicitly. Example: >
93
94 :python import sys
95 :python sys.argv = ["foo", "bar"]
96 :pyfile myscript.py
97
98Here are some examples *python-examples* >
99
100 :python from vim import *
101 :python from string import upper
102 :python current.line = upper(current.line)
103 :python print "Hello"
104 :python str = current.buffer[42]
105
106(Note that changes - like the imports - persist from one command to the next,
107just like in the Python interpreter.)
108
109==============================================================================
1102. The vim module *python-vim*
111
112Python code gets all of its access to vim (with one exception - see
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000113|python-output| below) via the "vim" module. The vim module implements two
Bram Moolenaar071d4272004-06-13 20:20:40 +0000114methods, three constants, and one error object. You need to import the vim
115module before using it: >
116 :python import vim
117
118Overview >
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000119 :py print "Hello" # displays a message
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100120 :py vim.command(cmd) # execute an Ex command
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000121 :py w = vim.windows[n] # gets window "n"
122 :py cw = vim.current.window # gets the current window
123 :py b = vim.buffers[n] # gets buffer "n"
124 :py cb = vim.current.buffer # gets the current buffer
125 :py w.height = lines # sets the window height
126 :py w.cursor = (row, col) # sets the window cursor position
127 :py pos = w.cursor # gets a tuple (row, col)
128 :py name = b.name # gets the buffer file name
129 :py line = b[n] # gets a line from the buffer
130 :py lines = b[n:m] # gets a list of lines
131 :py num = len(b) # gets the number of lines
132 :py b[n] = str # sets a line in the buffer
133 :py b[n:m] = [str1, str2, str3] # sets a number of lines at once
134 :py del b[n] # deletes a line
135 :py del b[n:m] # deletes a number of lines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000136
137
138Methods of the "vim" module
139
140vim.command(str) *python-command*
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000141 Executes the vim (ex-mode) command str. Returns None.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142 Examples: >
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000143 :py vim.command("set tw=72")
144 :py vim.command("%s/aaa/bbb/g")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000145< The following definition executes Normal mode commands: >
146 def normal(str):
147 vim.command("normal "+str)
148 # Note the use of single quotes to delimit a string containing
149 # double quotes
150 normal('"a2dd"aP')
151< *E659*
152 The ":python" command cannot be used recursively with Python 2.2 and
153 older. This only works with Python 2.3 and later: >
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000154 :py vim.command("python print 'Hello again Python'")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000155
156vim.eval(str) *python-eval*
157 Evaluates the expression str using the vim internal expression
Bram Moolenaar2d3f4892006-01-20 23:02:51 +0000158 evaluator (see |expression|). Returns the expression result as:
159 - a string if the Vim expression evaluates to a string or number
160 - a list if the Vim expression evaluates to a Vim list
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000161 - a dictionary if the Vim expression evaluates to a Vim dictionary
Bram Moolenaar2d3f4892006-01-20 23:02:51 +0000162 Dictionaries and lists are recursively expanded.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000163 Examples: >
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000164 :py text_width = vim.eval("&tw")
165 :py str = vim.eval("12+12") # NB result is a string! Use
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166 # string.atoi() to convert to
167 # a number.
168
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000169 :py tagList = vim.eval('taglist("eval_expr")')
Bram Moolenaar2d3f4892006-01-20 23:02:51 +0000170< The latter will return a python list of python dicts, for instance:
171 [{'cmd': '/^eval_expr(arg, nextcmd)$/', 'static': 0, 'name':
172 'eval_expr', 'kind': 'f', 'filename': './src/eval.c'}]
173
Bram Moolenaar30b65812012-07-12 22:01:11 +0200174vim.bindeval(str) *python-bindeval*
Bram Moolenaara9922d62013-05-30 13:01:18 +0200175 Like |python-eval|, but returns special objects described in
176 |python-bindeval-objects|. These python objects let you modify (|List|
Bram Moolenaarde71b562013-06-02 17:41:54 +0200177 or |Dictionary|) or call (|Funcref|) vim objects.
Bram Moolenaar2d3f4892006-01-20 23:02:51 +0000178
Bram Moolenaarbc411962013-06-02 17:46:40 +0200179vim.strwidth(str) *python-strwidth*
180 Like |strwidth()|: returns number of display cells str occupies, tab
181 is counted as one cell.
182
Bram Moolenaar071d4272004-06-13 20:20:40 +0000183Error object of the "vim" module
184
185vim.error *python-error*
186 Upon encountering a Vim error, Python raises an exception of type
187 vim.error.
188 Example: >
189 try:
190 vim.command("put a")
191 except vim.error:
192 # nothing in register a
193
194Constants of the "vim" module
195
196 Note that these are not actually constants - you could reassign them.
197 But this is silly, as you would then lose access to the vim objects
198 to which the variables referred.
199
200vim.buffers *python-buffers*
Bram Moolenaardfa38d42013-05-15 13:38:47 +0200201 A mapping object providing access to the list of vim buffers. The
Bram Moolenaar071d4272004-06-13 20:20:40 +0000202 object supports the following operations: >
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000203 :py b = vim.buffers[i] # Indexing (read-only)
204 :py b in vim.buffers # Membership test
205 :py n = len(vim.buffers) # Number of elements
Bram Moolenaarb6c589a2013-05-15 14:39:52 +0200206 :py for b in vim.buffers: # Iterating over buffer list
Bram Moolenaar071d4272004-06-13 20:20:40 +0000207<
208vim.windows *python-windows*
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000209 A sequence object providing access to the list of vim windows. The
Bram Moolenaar071d4272004-06-13 20:20:40 +0000210 object supports the following operations: >
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000211 :py w = vim.windows[i] # Indexing (read-only)
212 :py w in vim.windows # Membership test
213 :py n = len(vim.windows) # Number of elements
214 :py for w in vim.windows: # Sequential access
Bram Moolenaarde71b562013-06-02 17:41:54 +0200215< Note: vim.windows object always accesses current tab page.
Bram Moolenaar5e538ec2013-05-15 15:12:29 +0200216 |python-tabpage|.windows objects are bound to parent |python-tabpage|
217 object and always use windows from that tab page (or throw vim.error
218 in case tab page was deleted). You can keep a reference to both
219 without keeping a reference to vim module object or |python-tabpage|,
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200220 they will not lose their properties in this case.
Bram Moolenaar5e538ec2013-05-15 15:12:29 +0200221
222vim.tabpages *python-tabpages*
223 A sequence object providing access to the list of vim tab pages. The
224 object supports the following operations: >
225 :py t = vim.tabpages[i] # Indexing (read-only)
226 :py t in vim.tabpages # Membership test
227 :py n = len(vim.tabpages) # Number of elements
228 :py for t in vim.tabpages: # Sequential access
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229<
230vim.current *python-current*
231 An object providing access (via specific attributes) to various
232 "current" objects available in vim:
233 vim.current.line The current line (RW) String
Bram Moolenaare7614592013-05-15 15:51:08 +0200234 vim.current.buffer The current buffer (RW) Buffer
235 vim.current.window The current window (RW) Window
236 vim.current.tabpage The current tab page (RW) TabPage
Bram Moolenaar071d4272004-06-13 20:20:40 +0000237 vim.current.range The current line range (RO) Range
238
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000239 The last case deserves a little explanation. When the :python or
Bram Moolenaar071d4272004-06-13 20:20:40 +0000240 :pyfile command specifies a range, this range of lines becomes the
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000241 "current range". A range is a bit like a buffer, but with all access
242 restricted to a subset of lines. See |python-range| for more details.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000243
Bram Moolenaare7614592013-05-15 15:51:08 +0200244 Note: When assigning to vim.current.{buffer,window,tabpage} it expects
245 valid |python-buffer|, |python-window| or |python-tabpage| objects
246 respectively. Assigning triggers normal (with |autocommand|s)
247 switching to given buffer, window or tab page. It is the only way to
248 switch UI objects in python: you can't assign to
249 |python-tabpage|.window attribute. To switch without triggering
250 autocommands use >
251 py << EOF
252 saved_eventignore = vim.options['eventignore']
253 vim.options['eventignore'] = 'all'
254 try:
255 vim.current.buffer = vim.buffers[2] # Switch to buffer 2
256 finally:
257 vim.options['eventignore'] = saved_eventignore
258 EOF
259<
Bram Moolenaar230bb3f2013-04-24 14:07:45 +0200260vim.vars *python-vars*
261vim.vvars *python-vvars*
262 Dictionary-like objects holding dictionaries with global (|g:|) and
263 vim (|v:|) variables respectively. Identical to `vim.bindeval("g:")`,
264 but faster.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000265
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +0200266vim.options *python-options*
267 Object partly supporting mapping protocol (supports setting and
268 getting items) providing a read-write access to global options.
269 Note: unlike |:set| this provides access only to global options. You
270 cannot use this object to obtain or set local options' values or
271 access local-only options in any fashion. Raises KeyError if no global
272 option with such name exists (i.e. does not raise KeyError for
273 |global-local| options and global only options, but does for window-
274 and buffer-local ones). Use |python-buffer| objects to access to
275 buffer-local options and |python-window| objects to access to
276 window-local options.
277
Bram Moolenaarcac867a2013-05-21 19:50:34 +0200278 Type of this object is available via "Options" attribute of vim
279 module.
280
Bram Moolenaar071d4272004-06-13 20:20:40 +0000281Output from Python *python-output*
282 Vim displays all Python code output in the Vim message area. Normal
283 output appears as information messages, and error output appears as
284 error messages.
285
286 In implementation terms, this means that all output to sys.stdout
287 (including the output from print statements) appears as information
288 messages, and all output to sys.stderr (including error tracebacks)
289 appears as error messages.
290
291 *python-input*
292 Input (via sys.stdin, including input() and raw_input()) is not
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000293 supported, and may cause the program to crash. This should probably be
Bram Moolenaar071d4272004-06-13 20:20:40 +0000294 fixed.
295
296==============================================================================
2973. Buffer objects *python-buffer*
298
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000299Buffer objects represent vim buffers. You can obtain them in a number of ways:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000300 - via vim.current.buffer (|python-current|)
301 - from indexing vim.buffers (|python-buffers|)
302 - from the "buffer" attribute of a window (|python-window|)
303
Bram Moolenaarb8ff1fb2012-02-04 21:59:01 +0100304Buffer objects have two read-only attributes - name - the full file name for
305the buffer, and number - the buffer number. They also have three methods
306(append, mark, and range; see below).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000308You can also treat buffer objects as sequence objects. In this context, they
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309act as if they were lists (yes, they are mutable) of strings, with each
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000310element being a line of the buffer. All of the usual sequence operations,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000311including indexing, index assignment, slicing and slice assignment, work as
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000312you would expect. Note that the result of indexing (slicing) a buffer is a
313string (list of strings). This has one unusual consequence - b[:] is different
314from b. In particular, "b[:] = None" deletes the whole of the buffer, whereas
Bram Moolenaar071d4272004-06-13 20:20:40 +0000315"b = None" merely updates the variable b, with no effect on the buffer.
316
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000317Buffer indexes start at zero, as is normal in Python. This differs from vim
318line numbers, which start from 1. This is particularly relevant when dealing
Bram Moolenaar071d4272004-06-13 20:20:40 +0000319with marks (see below) which use vim line numbers.
320
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +0200321The buffer object attributes are:
322 b.vars Dictionary-like object used to access
323 |buffer-variable|s.
324 b.options Mapping object (supports item getting, setting and
325 deleting) that provides access to buffer-local options
326 and buffer-local values of |global-local| options. Use
327 |python-window|.options if option is window-local,
328 this object will raise KeyError. If option is
329 |global-local| and local value is missing getting it
330 will return None.
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200331 b.name String, RW. Contains buffer name (full path).
332 Note: when assigning to b.name |BufFilePre| and
333 |BufFilePost| autocommands are launched.
334 b.number Buffer number. Can be used as |python-buffers| key.
335 Read-only.
Bram Moolenaarbc411962013-06-02 17:46:40 +0200336 b.valid True or False. Buffer object becames invalid when
337 corresponding buffer is wiped out.
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +0200338
Bram Moolenaar071d4272004-06-13 20:20:40 +0000339The buffer object methods are:
340 b.append(str) Append a line to the buffer
Bram Moolenaar2c3b1d92010-07-24 16:58:02 +0200341 b.append(str, nr) Idem, below line "nr"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000342 b.append(list) Append a list of lines to the buffer
343 Note that the option of supplying a list of strings to
344 the append method differs from the equivalent method
345 for Python's built-in list objects.
Bram Moolenaar2c3b1d92010-07-24 16:58:02 +0200346 b.append(list, nr) Idem, below line "nr"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347 b.mark(name) Return a tuple (row,col) representing the position
348 of the named mark (can also get the []"<> marks)
349 b.range(s,e) Return a range object (see |python-range|) which
350 represents the part of the given buffer between line
351 numbers s and e |inclusive|.
352
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000353Note that when adding a line it must not contain a line break character '\n'.
354A trailing '\n' is allowed and ignored, so that you can do: >
355 :py b.append(f.readlines())
356
Bram Moolenaarcac867a2013-05-21 19:50:34 +0200357Buffer object type is available using "Buffer" attribute of vim module.
358
Bram Moolenaar071d4272004-06-13 20:20:40 +0000359Examples (assume b is the current buffer) >
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000360 :py print b.name # write the buffer file name
361 :py b[0] = "hello!!!" # replace the top line
362 :py b[:] = None # delete the whole buffer
363 :py del b[:] # delete the whole buffer
364 :py b[0:0] = [ "a line" ] # add a line at the top
365 :py del b[2] # delete a line (the third)
366 :py b.append("bottom") # add a line at the bottom
367 :py n = len(b) # number of lines
368 :py (row,col) = b.mark('a') # named mark
369 :py r = b.range(1,5) # a sub-range of the buffer
Bram Moolenaar230bb3f2013-04-24 14:07:45 +0200370 :py b.vars["foo"] = "bar" # assign b:foo variable
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +0200371 :py b.options["ff"] = "dos" # set fileformat
372 :py del b.options["ar"] # same as :set autoread<
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373
374==============================================================================
3754. Range objects *python-range*
376
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000377Range objects represent a part of a vim buffer. You can obtain them in a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378number of ways:
379 - via vim.current.range (|python-current|)
380 - from a buffer's range() method (|python-buffer|)
381
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000382A range object is almost identical in operation to a buffer object. However,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383all operations are restricted to the lines within the range (this line range
384can, of course, change as a result of slice assignments, line deletions, or
385the range.append() method).
386
387The range object attributes are:
388 r.start Index of first line into the buffer
389 r.end Index of last line into the buffer
390
391The range object methods are:
392 r.append(str) Append a line to the range
Bram Moolenaar2c3b1d92010-07-24 16:58:02 +0200393 r.append(str, nr) Idem, after line "nr"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000394 r.append(list) Append a list of lines to the range
395 Note that the option of supplying a list of strings to
396 the append method differs from the equivalent method
397 for Python's built-in list objects.
Bram Moolenaar2c3b1d92010-07-24 16:58:02 +0200398 r.append(list, nr) Idem, after line "nr"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000399
Bram Moolenaarcac867a2013-05-21 19:50:34 +0200400Range object type is available using "Range" attribute of vim module.
401
Bram Moolenaar071d4272004-06-13 20:20:40 +0000402Example (assume r is the current range):
403 # Send all lines in a range to the default printer
404 vim.command("%d,%dhardcopy!" % (r.start+1,r.end+1))
405
406==============================================================================
4075. Window objects *python-window*
408
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000409Window objects represent vim windows. You can obtain them in a number of ways:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410 - via vim.current.window (|python-current|)
411 - from indexing vim.windows (|python-windows|)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +0200412 - from indexing "windows" attribute of a tab page (|python-tabpage|)
413 - from the "window" attribute of a tab page (|python-tabpage|)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000414
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000415You can manipulate window objects only through their attributes. They have no
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416methods, and no sequence or other interface.
417
418Window attributes are:
419 buffer (read-only) The buffer displayed in this window
420 cursor (read-write) The current cursor position in the window
421 This is a tuple, (row,col).
422 height (read-write) The window height, in rows
423 width (read-write) The window width, in columns
Bram Moolenaar230bb3f2013-04-24 14:07:45 +0200424 vars (read-only) The window |w:| variables. Attribute is
425 unassignable, but you can change window
426 variables this way
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +0200427 options (read-only) The window-local options. Attribute is
428 unassignable, but you can change window
429 options this way. Provides access only to
430 window-local options, for buffer-local use
431 |python-buffer| and for global ones use
432 |python-options|. If option is |global-local|
433 and local value is missing getting it will
434 return None.
Bram Moolenaar6d216452013-05-12 19:00:41 +0200435 number (read-only) Window number. The first window has number 1.
436 This is zero in case it cannot be determined
437 (e.g. when the window object belongs to other
438 tab page).
Bram Moolenaarcabf80f2013-05-17 16:18:33 +0200439 row, col (read-only) On-screen window position in display cells.
Bram Moolenaar4e5dfb52013-05-12 19:30:31 +0200440 First position is zero.
Bram Moolenaarcabf80f2013-05-17 16:18:33 +0200441 tabpage (read-only) Window tab page.
Bram Moolenaarbc411962013-06-02 17:46:40 +0200442 valid (read-write) True or False. Window object becames invalid
443 when corresponding window is closed.
Bram Moolenaar4e5dfb52013-05-12 19:30:31 +0200444
Bram Moolenaar071d4272004-06-13 20:20:40 +0000445The height attribute is writable only if the screen is split horizontally.
446The width attribute is writable only if the screen is split vertically.
447
Bram Moolenaarcac867a2013-05-21 19:50:34 +0200448Window object type is available using "Window" attribute of vim module.
449
Bram Moolenaar071d4272004-06-13 20:20:40 +0000450==============================================================================
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02004516. Tab page objects *python-tabpage*
452
453Tab page objects represent vim tab pages. You can obtain them in a number of
454ways:
455 - via vim.current.tabpage (|python-current|)
456 - from indexing vim.tabpages (|python-tabpages|)
457
458You can use this object to access tab page windows. They have no methods and
459no sequence or other interfaces.
460
461Tab page attributes are:
462 number The tab page number like the one returned by
463 |tabpagenr()|.
464 windows Like |python-windows|, but for current tab page.
465 vars The tab page |t:| variables.
466 window Current tabpage window.
Bram Moolenaarbc411962013-06-02 17:46:40 +0200467 valid True or False. Tab page object becames invalid when
468 corresponding tab page is closed.
Bram Moolenaar5e538ec2013-05-15 15:12:29 +0200469
Bram Moolenaarcac867a2013-05-21 19:50:34 +0200470TabPage object type is available using "TabPage" attribute of vim module.
471
Bram Moolenaar5e538ec2013-05-15 15:12:29 +0200472==============================================================================
Bram Moolenaara9922d62013-05-30 13:01:18 +02004737. vim.bindeval objects *python-bindeval-objects*
474
475vim.Dictionary object *python-Dictionary*
476 Dictionary-like object providing access to vim |Dictionary| type.
477 Attributes:
478 Attribute Description ~
479 locked One of *python-.locked*
480 Value Description ~
481 zero Variable is not locked
482 vim.VAR_LOCKED Variable is locked, but can be unlocked
483 vim.VAR_FIXED Variable is locked and can't be unlocked
484 Read-write. You can unlock locked variable by assigning
485 `True` or `False` to this attribute. No recursive locking
486 is supported.
487 scope One of
488 Value Description ~
489 zero Dictionary is not a scope one
490 vim.VAR_DEF_SCOPE |g:| or |l:| dictionary
491 vim.VAR_SCOPE Other scope dictionary,
492 see |internal-variables|
Bram Moolenaar305b2fd2013-05-30 13:32:30 +0200493 Methods (note: methods do not support keyword arguments):
Bram Moolenaara9922d62013-05-30 13:01:18 +0200494 Method Description ~
495 keys() Returns a list with dictionary keys.
496 values() Returns a list with dictionary values.
497 items() Returns a list of 2-tuples with dictionary contents.
Bram Moolenaar305b2fd2013-05-30 13:32:30 +0200498 update(iterable), update(dictionary), update(**kwargs)
Bram Moolenaara9922d62013-05-30 13:01:18 +0200499 Adds keys to dictionary.
Bram Moolenaar305b2fd2013-05-30 13:32:30 +0200500 get(key[, default=None])
501 Obtain key from dictionary, returning the default if it is
502 not present.
503 pop(key[, default])
504 Remove specified key from dictionary and return
505 corresponding value. If key is not found and default is
506 given returns the default, otherwise raises KeyError.
Bram Moolenaarde71b562013-06-02 17:41:54 +0200507 popitem()
508 Remove random key from dictionary and return (key, value)
509 pair.
Bram Moolenaar305b2fd2013-05-30 13:32:30 +0200510 has_key(key)
511 Check whether dictionary contains specified key, similar
512 to `key in dict`.
513
514 __new__(), __new__(iterable), __new__(dictionary), __new__(update)
515 You can use `vim.Dictionary()` to create new vim
516 dictionaries. `d=vim.Dictionary(arg)` is the same as
517 `d=vim.bindeval('{}');d.update(arg)`. Without arguments
518 constructs empty dictionary.
519
Bram Moolenaara9922d62013-05-30 13:01:18 +0200520 Examples: >
Bram Moolenaar305b2fd2013-05-30 13:32:30 +0200521 d = vim.Dictionary(food="bar") # Constructor
Bram Moolenaara9922d62013-05-30 13:01:18 +0200522 d['a'] = 'b' # Item assignment
523 print d['a'] # getting item
524 d.update({'c': 'd'}) # .update(dictionary)
525 d.update(e='f') # .update(**kwargs)
526 d.update((('g', 'h'), ('i', 'j'))) # .update(iterable)
527 for key in d.keys(): # .keys()
528 for val in d.values(): # .values()
529 for key, val in d.items(): # .items()
530 print isinstance(d, vim.Dictionary) # True
531 for key in d: # Iteration over keys
Bram Moolenaar305b2fd2013-05-30 13:32:30 +0200532 class Dict(vim.Dictionary): # Subclassing
Bram Moolenaara9922d62013-05-30 13:01:18 +0200533<
534 Note: when iterating over keys you should not modify dictionary.
535
536vim.List object *python-List*
537 Sequence-like object providing access to vim |List| type.
538 Supports `.locked` attribute, see |python-.locked|. Also supports the
539 following methods:
540 Method Description ~
541 extend(item) Add items to the list.
Bram Moolenaar305b2fd2013-05-30 13:32:30 +0200542
543 __new__(), __new__(iterable)
544 You can use `vim.List()` to create new vim lists.
545 `l=vim.List(iterable)` is the same as
546 `l=vim.bindeval('[]');l.extend(iterable)`. Without
547 arguments constructs empty list.
Bram Moolenaara9922d62013-05-30 13:01:18 +0200548 Examples: >
Bram Moolenaar305b2fd2013-05-30 13:32:30 +0200549 l = vim.List("abc") # Constructor, result: ['a', 'b', 'c']
Bram Moolenaara9922d62013-05-30 13:01:18 +0200550 l.extend(['abc', 'def']) # .extend() method
551 print l[1:] # slicing
552 l[:0] = ['ghi', 'jkl'] # slice assignment
553 print l[0] # getting item
554 l[0] = 'mno' # assignment
555 for i in l: # iteration
556 print isinstance(l, vim.List) # True
Bram Moolenaar305b2fd2013-05-30 13:32:30 +0200557 class List(vim.List): # Subclassing
Bram Moolenaara9922d62013-05-30 13:01:18 +0200558
559vim.Function object *python-Function*
560 Function-like object, acting like vim |Funcref| object. Supports `.name`
561 attribute and is callable. Accepts special keyword argument `self`, see
Bram Moolenaar305b2fd2013-05-30 13:32:30 +0200562 |Dictionary-function|. You can also use `vim.Function(name)` constructor,
563 it is the same as `vim.bindeval('function(%s)'%json.dumps(name))`.
564
Bram Moolenaara9922d62013-05-30 13:01:18 +0200565 Examples: >
Bram Moolenaar305b2fd2013-05-30 13:32:30 +0200566 f = vim.Function('tr') # Constructor
Bram Moolenaara9922d62013-05-30 13:01:18 +0200567 print f('abc', 'a', 'b') # Calls tr('abc', 'a', 'b')
568 vim.command('''
569 function DictFun() dict
570 return self
571 endfunction
572 ''')
573 f = vim.bindeval('function("DictFun")')
574 print f(self={}) # Like call('DictFun', [], {})
575 print isinstance(f, vim.Function) # True
576
577==============================================================================
5788. pyeval() and py3eval() Vim functions *python-pyeval*
Bram Moolenaar30b65812012-07-12 22:01:11 +0200579
580To facilitate bi-directional interface, you can use |pyeval()| and |py3eval()|
581functions to evaluate Python expressions and pass their values to VimL.
582
583==============================================================================
Bram Moolenaara9922d62013-05-30 13:01:18 +02005849. Dynamic loading *python-dynamic*
Bram Moolenaara5792f52005-11-23 21:25:05 +0000585
586On MS-Windows the Python library can be loaded dynamically. The |:version|
587output then includes |+python/dyn|.
588
589This means that Vim will search for the Python DLL file only when needed.
590When you don't use the Python interface you don't need it, thus you can use
591Vim without this DLL file.
592
593To use the Python interface the Python DLL must be in your search path. In a
594console window type "path" to see what directories are used.
595
596The name of the DLL must match the Python version Vim was compiled with.
597Currently the name is "python24.dll". That is for Python 2.4. To know for
598sure edit "gvim.exe" and search for "python\d*.dll\c".
599
600==============================================================================
Bram Moolenaara9922d62013-05-30 13:01:18 +020060110. Python 3 *python3*
Bram Moolenaar6df6f472010-07-18 18:04:50 +0200602
Bram Moolenaarbfc8b972010-08-13 22:05:54 +0200603 *:py3* *:python3*
Bram Moolenaard620aa92013-05-17 16:40:06 +0200604The `:py3` and `:python3` commands work similar to `:python`. A simple check
Bram Moolenaarfa13eef2013-02-06 17:34:04 +0100605if the `:py3` command is working: >
Bram Moolenaar9b451252012-08-15 17:43:31 +0200606 :py3 print("Hello")
607< *:py3file*
Bram Moolenaard620aa92013-05-17 16:40:06 +0200608The `:py3file` command works similar to `:pyfile`.
Bram Moolenaarcabf80f2013-05-17 16:18:33 +0200609 *:py3do* *E863*
Bram Moolenaard620aa92013-05-17 16:40:06 +0200610The `:py3do` command works similar to `:pydo`.
Bram Moolenaar3dab2802013-05-15 18:28:13 +0200611
Bram Moolenaar30b65812012-07-12 22:01:11 +0200612
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +0200613Vim can be built in four ways (:version output):
Bram Moolenaarbfc8b972010-08-13 22:05:54 +02006141. No Python support (-python, -python3)
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02006152. Python 2 support only (+python or +python/dyn, -python3)
6163. Python 3 support only (-python, +python3 or +python3/dyn)
6174. Python 2 and 3 support (+python/dyn, +python3/dyn)
Bram Moolenaar6df6f472010-07-18 18:04:50 +0200618
Bram Moolenaarbfc8b972010-08-13 22:05:54 +0200619Some more details on the special case 4:
Bram Moolenaarede981a2010-08-11 23:37:32 +0200620
Bram Moolenaarbfc8b972010-08-13 22:05:54 +0200621When Python 2 and Python 3 are both supported they must be loaded dynamically.
622
623When doing this on Linux/Unix systems and importing global symbols, this leads
624to a crash when the second Python version is used. So either global symbols
625are loaded but only one Python version is activated, or no global symbols are
Bram Moolenaar483c5d82010-10-20 18:45:33 +0200626loaded. The latter makes Python's "import" fail on libraries that expect the
Bram Moolenaarbfc8b972010-08-13 22:05:54 +0200627symbols to be provided by Vim.
628 *E836* *E837*
629Vim's configuration script makes a guess for all libraries based on one
630standard Python library (termios). If importing this library succeeds for
631both Python versions, then both will be made available in Vim at the same
632time. If not, only the version first used in a session will be enabled.
633When trying to use the other one you will get the E836 or E837 error message.
634
635Here Vim's behavior depends on the system in which it was configured. In a
636system where both versions of Python were configured with --enable-shared,
637both versions of Python will be activated at the same time. There will still
638be problems with other third party libraries that were not linked to
639libPython.
640
641To work around such problems there are these options:
6421. The problematic library is recompiled to link to the according
643 libpython.so.
6442. Vim is recompiled for only one Python version.
6453. You undefine PY_NO_RTLD_GLOBAL in auto/config.h after configuration. This
646 may crash Vim though.
647
Bram Moolenaar446beb42011-05-10 17:18:44 +0200648 *has-python*
649You can test what Python version is available with: >
650 if has('python')
Bram Moolenaar5302d9e2011-09-14 17:55:08 +0200651 echo 'there is Python 2.x'
Bram Moolenaar446beb42011-05-10 17:18:44 +0200652 elseif has('python3')
653 echo 'there is Python 3.x'
654 endif
655
656Note however, that when Python 2 and 3 are both available and loaded
657dynamically, these has() calls will try to load them. If only one can be
658loaded at a time, just checking if Python 2 or 3 are available will prevent
659the other one from being available.
Bram Moolenaar6df6f472010-07-18 18:04:50 +0200660
661==============================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662 vim:tw=78:ts=8:ft=help:norl: