blob: 7bd9b377e4c885e439810f18e22b626ddd0de348 [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 Moolenaarf4258302013-06-02 18:20:17 +0200183vim.chdir(*args, **kwargs) *python-chdir*
184vim.fchdir(*args, **kwargs) *python-fchdir*
185 Run os.chdir or os.fchdir, then all appropriate vim stuff.
186 Note: you should not use these functions directly, use os.chdir and
187 os.fchdir instead. Behavior of vim.fchdir is undefined in case
188 os.fchdir does not exist.
189
Bram Moolenaar071d4272004-06-13 20:20:40 +0000190Error object of the "vim" module
191
192vim.error *python-error*
193 Upon encountering a Vim error, Python raises an exception of type
194 vim.error.
195 Example: >
196 try:
197 vim.command("put a")
198 except vim.error:
199 # nothing in register a
200
201Constants of the "vim" module
202
203 Note that these are not actually constants - you could reassign them.
204 But this is silly, as you would then lose access to the vim objects
205 to which the variables referred.
206
207vim.buffers *python-buffers*
Bram Moolenaardfa38d42013-05-15 13:38:47 +0200208 A mapping object providing access to the list of vim buffers. The
Bram Moolenaar071d4272004-06-13 20:20:40 +0000209 object supports the following operations: >
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000210 :py b = vim.buffers[i] # Indexing (read-only)
211 :py b in vim.buffers # Membership test
212 :py n = len(vim.buffers) # Number of elements
Bram Moolenaarb6c589a2013-05-15 14:39:52 +0200213 :py for b in vim.buffers: # Iterating over buffer list
Bram Moolenaar071d4272004-06-13 20:20:40 +0000214<
215vim.windows *python-windows*
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000216 A sequence object providing access to the list of vim windows. The
Bram Moolenaar071d4272004-06-13 20:20:40 +0000217 object supports the following operations: >
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000218 :py w = vim.windows[i] # Indexing (read-only)
219 :py w in vim.windows # Membership test
220 :py n = len(vim.windows) # Number of elements
221 :py for w in vim.windows: # Sequential access
Bram Moolenaarde71b562013-06-02 17:41:54 +0200222< Note: vim.windows object always accesses current tab page.
Bram Moolenaar5e538ec2013-05-15 15:12:29 +0200223 |python-tabpage|.windows objects are bound to parent |python-tabpage|
224 object and always use windows from that tab page (or throw vim.error
225 in case tab page was deleted). You can keep a reference to both
226 without keeping a reference to vim module object or |python-tabpage|,
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200227 they will not lose their properties in this case.
Bram Moolenaar5e538ec2013-05-15 15:12:29 +0200228
229vim.tabpages *python-tabpages*
230 A sequence object providing access to the list of vim tab pages. The
231 object supports the following operations: >
232 :py t = vim.tabpages[i] # Indexing (read-only)
233 :py t in vim.tabpages # Membership test
234 :py n = len(vim.tabpages) # Number of elements
235 :py for t in vim.tabpages: # Sequential access
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236<
237vim.current *python-current*
238 An object providing access (via specific attributes) to various
239 "current" objects available in vim:
240 vim.current.line The current line (RW) String
Bram Moolenaare7614592013-05-15 15:51:08 +0200241 vim.current.buffer The current buffer (RW) Buffer
242 vim.current.window The current window (RW) Window
243 vim.current.tabpage The current tab page (RW) TabPage
Bram Moolenaar071d4272004-06-13 20:20:40 +0000244 vim.current.range The current line range (RO) Range
245
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000246 The last case deserves a little explanation. When the :python or
Bram Moolenaar071d4272004-06-13 20:20:40 +0000247 :pyfile command specifies a range, this range of lines becomes the
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000248 "current range". A range is a bit like a buffer, but with all access
249 restricted to a subset of lines. See |python-range| for more details.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000250
Bram Moolenaare7614592013-05-15 15:51:08 +0200251 Note: When assigning to vim.current.{buffer,window,tabpage} it expects
252 valid |python-buffer|, |python-window| or |python-tabpage| objects
253 respectively. Assigning triggers normal (with |autocommand|s)
254 switching to given buffer, window or tab page. It is the only way to
255 switch UI objects in python: you can't assign to
256 |python-tabpage|.window attribute. To switch without triggering
257 autocommands use >
258 py << EOF
259 saved_eventignore = vim.options['eventignore']
260 vim.options['eventignore'] = 'all'
261 try:
262 vim.current.buffer = vim.buffers[2] # Switch to buffer 2
263 finally:
264 vim.options['eventignore'] = saved_eventignore
265 EOF
266<
Bram Moolenaar230bb3f2013-04-24 14:07:45 +0200267vim.vars *python-vars*
268vim.vvars *python-vvars*
269 Dictionary-like objects holding dictionaries with global (|g:|) and
270 vim (|v:|) variables respectively. Identical to `vim.bindeval("g:")`,
271 but faster.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000272
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +0200273vim.options *python-options*
274 Object partly supporting mapping protocol (supports setting and
275 getting items) providing a read-write access to global options.
276 Note: unlike |:set| this provides access only to global options. You
277 cannot use this object to obtain or set local options' values or
278 access local-only options in any fashion. Raises KeyError if no global
279 option with such name exists (i.e. does not raise KeyError for
280 |global-local| options and global only options, but does for window-
281 and buffer-local ones). Use |python-buffer| objects to access to
282 buffer-local options and |python-window| objects to access to
283 window-local options.
284
Bram Moolenaarcac867a2013-05-21 19:50:34 +0200285 Type of this object is available via "Options" attribute of vim
286 module.
287
Bram Moolenaar071d4272004-06-13 20:20:40 +0000288Output from Python *python-output*
289 Vim displays all Python code output in the Vim message area. Normal
290 output appears as information messages, and error output appears as
291 error messages.
292
293 In implementation terms, this means that all output to sys.stdout
294 (including the output from print statements) appears as information
295 messages, and all output to sys.stderr (including error tracebacks)
296 appears as error messages.
297
298 *python-input*
299 Input (via sys.stdin, including input() and raw_input()) is not
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000300 supported, and may cause the program to crash. This should probably be
Bram Moolenaar071d4272004-06-13 20:20:40 +0000301 fixed.
302
303==============================================================================
3043. Buffer objects *python-buffer*
305
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000306Buffer objects represent vim buffers. You can obtain them in a number of ways:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307 - via vim.current.buffer (|python-current|)
308 - from indexing vim.buffers (|python-buffers|)
309 - from the "buffer" attribute of a window (|python-window|)
310
Bram Moolenaarb8ff1fb2012-02-04 21:59:01 +0100311Buffer objects have two read-only attributes - name - the full file name for
312the buffer, and number - the buffer number. They also have three methods
313(append, mark, and range; see below).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000315You can also treat buffer objects as sequence objects. In this context, they
Bram Moolenaar071d4272004-06-13 20:20:40 +0000316act as if they were lists (yes, they are mutable) of strings, with each
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000317element being a line of the buffer. All of the usual sequence operations,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000318including indexing, index assignment, slicing and slice assignment, work as
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000319you would expect. Note that the result of indexing (slicing) a buffer is a
320string (list of strings). This has one unusual consequence - b[:] is different
321from b. In particular, "b[:] = None" deletes the whole of the buffer, whereas
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322"b = None" merely updates the variable b, with no effect on the buffer.
323
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000324Buffer indexes start at zero, as is normal in Python. This differs from vim
325line numbers, which start from 1. This is particularly relevant when dealing
Bram Moolenaar071d4272004-06-13 20:20:40 +0000326with marks (see below) which use vim line numbers.
327
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +0200328The buffer object attributes are:
329 b.vars Dictionary-like object used to access
330 |buffer-variable|s.
331 b.options Mapping object (supports item getting, setting and
332 deleting) that provides access to buffer-local options
333 and buffer-local values of |global-local| options. Use
334 |python-window|.options if option is window-local,
335 this object will raise KeyError. If option is
336 |global-local| and local value is missing getting it
337 will return None.
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200338 b.name String, RW. Contains buffer name (full path).
339 Note: when assigning to b.name |BufFilePre| and
340 |BufFilePost| autocommands are launched.
341 b.number Buffer number. Can be used as |python-buffers| key.
342 Read-only.
Bram Moolenaarbc411962013-06-02 17:46:40 +0200343 b.valid True or False. Buffer object becames invalid when
344 corresponding buffer is wiped out.
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +0200345
Bram Moolenaar071d4272004-06-13 20:20:40 +0000346The buffer object methods are:
347 b.append(str) Append a line to the buffer
Bram Moolenaar2c3b1d92010-07-24 16:58:02 +0200348 b.append(str, nr) Idem, below line "nr"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349 b.append(list) Append a list of lines to the buffer
350 Note that the option of supplying a list of strings to
351 the append method differs from the equivalent method
352 for Python's built-in list objects.
Bram Moolenaar2c3b1d92010-07-24 16:58:02 +0200353 b.append(list, nr) Idem, below line "nr"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000354 b.mark(name) Return a tuple (row,col) representing the position
355 of the named mark (can also get the []"<> marks)
356 b.range(s,e) Return a range object (see |python-range|) which
357 represents the part of the given buffer between line
358 numbers s and e |inclusive|.
359
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000360Note that when adding a line it must not contain a line break character '\n'.
361A trailing '\n' is allowed and ignored, so that you can do: >
362 :py b.append(f.readlines())
363
Bram Moolenaarcac867a2013-05-21 19:50:34 +0200364Buffer object type is available using "Buffer" attribute of vim module.
365
Bram Moolenaar071d4272004-06-13 20:20:40 +0000366Examples (assume b is the current buffer) >
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000367 :py print b.name # write the buffer file name
368 :py b[0] = "hello!!!" # replace the top line
369 :py b[:] = None # delete the whole buffer
370 :py del b[:] # delete the whole buffer
371 :py b[0:0] = [ "a line" ] # add a line at the top
372 :py del b[2] # delete a line (the third)
373 :py b.append("bottom") # add a line at the bottom
374 :py n = len(b) # number of lines
375 :py (row,col) = b.mark('a') # named mark
376 :py r = b.range(1,5) # a sub-range of the buffer
Bram Moolenaar230bb3f2013-04-24 14:07:45 +0200377 :py b.vars["foo"] = "bar" # assign b:foo variable
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +0200378 :py b.options["ff"] = "dos" # set fileformat
379 :py del b.options["ar"] # same as :set autoread<
Bram Moolenaar071d4272004-06-13 20:20:40 +0000380
381==============================================================================
3824. Range objects *python-range*
383
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000384Range objects represent a part of a vim buffer. You can obtain them in a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000385number of ways:
386 - via vim.current.range (|python-current|)
387 - from a buffer's range() method (|python-buffer|)
388
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000389A range object is almost identical in operation to a buffer object. However,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000390all operations are restricted to the lines within the range (this line range
391can, of course, change as a result of slice assignments, line deletions, or
392the range.append() method).
393
394The range object attributes are:
395 r.start Index of first line into the buffer
396 r.end Index of last line into the buffer
397
398The range object methods are:
399 r.append(str) Append a line to the range
Bram Moolenaar2c3b1d92010-07-24 16:58:02 +0200400 r.append(str, nr) Idem, after line "nr"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000401 r.append(list) Append a list of lines to the range
402 Note that the option of supplying a list of strings to
403 the append method differs from the equivalent method
404 for Python's built-in list objects.
Bram Moolenaar2c3b1d92010-07-24 16:58:02 +0200405 r.append(list, nr) Idem, after line "nr"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406
Bram Moolenaarcac867a2013-05-21 19:50:34 +0200407Range object type is available using "Range" attribute of vim module.
408
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409Example (assume r is the current range):
410 # Send all lines in a range to the default printer
411 vim.command("%d,%dhardcopy!" % (r.start+1,r.end+1))
412
413==============================================================================
4145. Window objects *python-window*
415
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000416Window objects represent vim windows. You can obtain them in a number of ways:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000417 - via vim.current.window (|python-current|)
418 - from indexing vim.windows (|python-windows|)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +0200419 - from indexing "windows" attribute of a tab page (|python-tabpage|)
420 - from the "window" attribute of a tab page (|python-tabpage|)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000422You can manipulate window objects only through their attributes. They have no
Bram Moolenaar071d4272004-06-13 20:20:40 +0000423methods, and no sequence or other interface.
424
425Window attributes are:
426 buffer (read-only) The buffer displayed in this window
427 cursor (read-write) The current cursor position in the window
428 This is a tuple, (row,col).
429 height (read-write) The window height, in rows
430 width (read-write) The window width, in columns
Bram Moolenaar230bb3f2013-04-24 14:07:45 +0200431 vars (read-only) The window |w:| variables. Attribute is
432 unassignable, but you can change window
433 variables this way
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +0200434 options (read-only) The window-local options. Attribute is
435 unassignable, but you can change window
436 options this way. Provides access only to
437 window-local options, for buffer-local use
438 |python-buffer| and for global ones use
439 |python-options|. If option is |global-local|
440 and local value is missing getting it will
441 return None.
Bram Moolenaar6d216452013-05-12 19:00:41 +0200442 number (read-only) Window number. The first window has number 1.
443 This is zero in case it cannot be determined
444 (e.g. when the window object belongs to other
445 tab page).
Bram Moolenaarcabf80f2013-05-17 16:18:33 +0200446 row, col (read-only) On-screen window position in display cells.
Bram Moolenaar4e5dfb52013-05-12 19:30:31 +0200447 First position is zero.
Bram Moolenaarcabf80f2013-05-17 16:18:33 +0200448 tabpage (read-only) Window tab page.
Bram Moolenaarbc411962013-06-02 17:46:40 +0200449 valid (read-write) True or False. Window object becames invalid
450 when corresponding window is closed.
Bram Moolenaar4e5dfb52013-05-12 19:30:31 +0200451
Bram Moolenaar071d4272004-06-13 20:20:40 +0000452The height attribute is writable only if the screen is split horizontally.
453The width attribute is writable only if the screen is split vertically.
454
Bram Moolenaarcac867a2013-05-21 19:50:34 +0200455Window object type is available using "Window" attribute of vim module.
456
Bram Moolenaar071d4272004-06-13 20:20:40 +0000457==============================================================================
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02004586. Tab page objects *python-tabpage*
459
460Tab page objects represent vim tab pages. You can obtain them in a number of
461ways:
462 - via vim.current.tabpage (|python-current|)
463 - from indexing vim.tabpages (|python-tabpages|)
464
465You can use this object to access tab page windows. They have no methods and
466no sequence or other interfaces.
467
468Tab page attributes are:
469 number The tab page number like the one returned by
470 |tabpagenr()|.
471 windows Like |python-windows|, but for current tab page.
472 vars The tab page |t:| variables.
473 window Current tabpage window.
Bram Moolenaarbc411962013-06-02 17:46:40 +0200474 valid True or False. Tab page object becames invalid when
475 corresponding tab page is closed.
Bram Moolenaar5e538ec2013-05-15 15:12:29 +0200476
Bram Moolenaarcac867a2013-05-21 19:50:34 +0200477TabPage object type is available using "TabPage" attribute of vim module.
478
Bram Moolenaar5e538ec2013-05-15 15:12:29 +0200479==============================================================================
Bram Moolenaara9922d62013-05-30 13:01:18 +02004807. vim.bindeval objects *python-bindeval-objects*
481
482vim.Dictionary object *python-Dictionary*
483 Dictionary-like object providing access to vim |Dictionary| type.
484 Attributes:
485 Attribute Description ~
486 locked One of *python-.locked*
487 Value Description ~
488 zero Variable is not locked
489 vim.VAR_LOCKED Variable is locked, but can be unlocked
490 vim.VAR_FIXED Variable is locked and can't be unlocked
491 Read-write. You can unlock locked variable by assigning
492 `True` or `False` to this attribute. No recursive locking
493 is supported.
494 scope One of
495 Value Description ~
496 zero Dictionary is not a scope one
497 vim.VAR_DEF_SCOPE |g:| or |l:| dictionary
498 vim.VAR_SCOPE Other scope dictionary,
499 see |internal-variables|
Bram Moolenaar305b2fd2013-05-30 13:32:30 +0200500 Methods (note: methods do not support keyword arguments):
Bram Moolenaara9922d62013-05-30 13:01:18 +0200501 Method Description ~
502 keys() Returns a list with dictionary keys.
503 values() Returns a list with dictionary values.
504 items() Returns a list of 2-tuples with dictionary contents.
Bram Moolenaar305b2fd2013-05-30 13:32:30 +0200505 update(iterable), update(dictionary), update(**kwargs)
Bram Moolenaara9922d62013-05-30 13:01:18 +0200506 Adds keys to dictionary.
Bram Moolenaar305b2fd2013-05-30 13:32:30 +0200507 get(key[, default=None])
508 Obtain key from dictionary, returning the default if it is
509 not present.
510 pop(key[, default])
511 Remove specified key from dictionary and return
512 corresponding value. If key is not found and default is
513 given returns the default, otherwise raises KeyError.
Bram Moolenaarde71b562013-06-02 17:41:54 +0200514 popitem()
515 Remove random key from dictionary and return (key, value)
516 pair.
Bram Moolenaar305b2fd2013-05-30 13:32:30 +0200517 has_key(key)
518 Check whether dictionary contains specified key, similar
519 to `key in dict`.
520
521 __new__(), __new__(iterable), __new__(dictionary), __new__(update)
522 You can use `vim.Dictionary()` to create new vim
523 dictionaries. `d=vim.Dictionary(arg)` is the same as
524 `d=vim.bindeval('{}');d.update(arg)`. Without arguments
525 constructs empty dictionary.
526
Bram Moolenaara9922d62013-05-30 13:01:18 +0200527 Examples: >
Bram Moolenaar305b2fd2013-05-30 13:32:30 +0200528 d = vim.Dictionary(food="bar") # Constructor
Bram Moolenaara9922d62013-05-30 13:01:18 +0200529 d['a'] = 'b' # Item assignment
530 print d['a'] # getting item
531 d.update({'c': 'd'}) # .update(dictionary)
532 d.update(e='f') # .update(**kwargs)
533 d.update((('g', 'h'), ('i', 'j'))) # .update(iterable)
534 for key in d.keys(): # .keys()
535 for val in d.values(): # .values()
536 for key, val in d.items(): # .items()
537 print isinstance(d, vim.Dictionary) # True
538 for key in d: # Iteration over keys
Bram Moolenaar305b2fd2013-05-30 13:32:30 +0200539 class Dict(vim.Dictionary): # Subclassing
Bram Moolenaara9922d62013-05-30 13:01:18 +0200540<
541 Note: when iterating over keys you should not modify dictionary.
542
543vim.List object *python-List*
544 Sequence-like object providing access to vim |List| type.
545 Supports `.locked` attribute, see |python-.locked|. Also supports the
546 following methods:
547 Method Description ~
548 extend(item) Add items to the list.
Bram Moolenaar305b2fd2013-05-30 13:32:30 +0200549
550 __new__(), __new__(iterable)
551 You can use `vim.List()` to create new vim lists.
552 `l=vim.List(iterable)` is the same as
553 `l=vim.bindeval('[]');l.extend(iterable)`. Without
554 arguments constructs empty list.
Bram Moolenaara9922d62013-05-30 13:01:18 +0200555 Examples: >
Bram Moolenaar305b2fd2013-05-30 13:32:30 +0200556 l = vim.List("abc") # Constructor, result: ['a', 'b', 'c']
Bram Moolenaara9922d62013-05-30 13:01:18 +0200557 l.extend(['abc', 'def']) # .extend() method
558 print l[1:] # slicing
559 l[:0] = ['ghi', 'jkl'] # slice assignment
560 print l[0] # getting item
561 l[0] = 'mno' # assignment
562 for i in l: # iteration
563 print isinstance(l, vim.List) # True
Bram Moolenaar305b2fd2013-05-30 13:32:30 +0200564 class List(vim.List): # Subclassing
Bram Moolenaara9922d62013-05-30 13:01:18 +0200565
566vim.Function object *python-Function*
567 Function-like object, acting like vim |Funcref| object. Supports `.name`
568 attribute and is callable. Accepts special keyword argument `self`, see
Bram Moolenaar305b2fd2013-05-30 13:32:30 +0200569 |Dictionary-function|. You can also use `vim.Function(name)` constructor,
570 it is the same as `vim.bindeval('function(%s)'%json.dumps(name))`.
571
Bram Moolenaara9922d62013-05-30 13:01:18 +0200572 Examples: >
Bram Moolenaar305b2fd2013-05-30 13:32:30 +0200573 f = vim.Function('tr') # Constructor
Bram Moolenaara9922d62013-05-30 13:01:18 +0200574 print f('abc', 'a', 'b') # Calls tr('abc', 'a', 'b')
575 vim.command('''
576 function DictFun() dict
577 return self
578 endfunction
579 ''')
580 f = vim.bindeval('function("DictFun")')
581 print f(self={}) # Like call('DictFun', [], {})
582 print isinstance(f, vim.Function) # True
583
584==============================================================================
5858. pyeval() and py3eval() Vim functions *python-pyeval*
Bram Moolenaar30b65812012-07-12 22:01:11 +0200586
587To facilitate bi-directional interface, you can use |pyeval()| and |py3eval()|
588functions to evaluate Python expressions and pass their values to VimL.
589
590==============================================================================
Bram Moolenaara9922d62013-05-30 13:01:18 +02005919. Dynamic loading *python-dynamic*
Bram Moolenaara5792f52005-11-23 21:25:05 +0000592
593On MS-Windows the Python library can be loaded dynamically. The |:version|
594output then includes |+python/dyn|.
595
596This means that Vim will search for the Python DLL file only when needed.
597When you don't use the Python interface you don't need it, thus you can use
598Vim without this DLL file.
599
600To use the Python interface the Python DLL must be in your search path. In a
601console window type "path" to see what directories are used.
602
603The name of the DLL must match the Python version Vim was compiled with.
604Currently the name is "python24.dll". That is for Python 2.4. To know for
605sure edit "gvim.exe" and search for "python\d*.dll\c".
606
607==============================================================================
Bram Moolenaara9922d62013-05-30 13:01:18 +020060810. Python 3 *python3*
Bram Moolenaar6df6f472010-07-18 18:04:50 +0200609
Bram Moolenaarbfc8b972010-08-13 22:05:54 +0200610 *:py3* *:python3*
Bram Moolenaard620aa92013-05-17 16:40:06 +0200611The `:py3` and `:python3` commands work similar to `:python`. A simple check
Bram Moolenaarfa13eef2013-02-06 17:34:04 +0100612if the `:py3` command is working: >
Bram Moolenaar9b451252012-08-15 17:43:31 +0200613 :py3 print("Hello")
614< *:py3file*
Bram Moolenaard620aa92013-05-17 16:40:06 +0200615The `:py3file` command works similar to `:pyfile`.
Bram Moolenaarcabf80f2013-05-17 16:18:33 +0200616 *:py3do* *E863*
Bram Moolenaard620aa92013-05-17 16:40:06 +0200617The `:py3do` command works similar to `:pydo`.
Bram Moolenaar3dab2802013-05-15 18:28:13 +0200618
Bram Moolenaar30b65812012-07-12 22:01:11 +0200619
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +0200620Vim can be built in four ways (:version output):
Bram Moolenaarbfc8b972010-08-13 22:05:54 +02006211. No Python support (-python, -python3)
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02006222. Python 2 support only (+python or +python/dyn, -python3)
6233. Python 3 support only (-python, +python3 or +python3/dyn)
6244. Python 2 and 3 support (+python/dyn, +python3/dyn)
Bram Moolenaar6df6f472010-07-18 18:04:50 +0200625
Bram Moolenaarbfc8b972010-08-13 22:05:54 +0200626Some more details on the special case 4:
Bram Moolenaarede981a2010-08-11 23:37:32 +0200627
Bram Moolenaarbfc8b972010-08-13 22:05:54 +0200628When Python 2 and Python 3 are both supported they must be loaded dynamically.
629
630When doing this on Linux/Unix systems and importing global symbols, this leads
631to a crash when the second Python version is used. So either global symbols
632are loaded but only one Python version is activated, or no global symbols are
Bram Moolenaar483c5d82010-10-20 18:45:33 +0200633loaded. The latter makes Python's "import" fail on libraries that expect the
Bram Moolenaarbfc8b972010-08-13 22:05:54 +0200634symbols to be provided by Vim.
635 *E836* *E837*
636Vim's configuration script makes a guess for all libraries based on one
637standard Python library (termios). If importing this library succeeds for
638both Python versions, then both will be made available in Vim at the same
639time. If not, only the version first used in a session will be enabled.
640When trying to use the other one you will get the E836 or E837 error message.
641
642Here Vim's behavior depends on the system in which it was configured. In a
643system where both versions of Python were configured with --enable-shared,
644both versions of Python will be activated at the same time. There will still
645be problems with other third party libraries that were not linked to
646libPython.
647
648To work around such problems there are these options:
6491. The problematic library is recompiled to link to the according
650 libpython.so.
6512. Vim is recompiled for only one Python version.
6523. You undefine PY_NO_RTLD_GLOBAL in auto/config.h after configuration. This
653 may crash Vim though.
654
Bram Moolenaar446beb42011-05-10 17:18:44 +0200655 *has-python*
656You can test what Python version is available with: >
657 if has('python')
Bram Moolenaar5302d9e2011-09-14 17:55:08 +0200658 echo 'there is Python 2.x'
Bram Moolenaar446beb42011-05-10 17:18:44 +0200659 elseif has('python3')
660 echo 'there is Python 3.x'
661 endif
662
663Note however, that when Python 2 and 3 are both available and loaded
664dynamically, these has() calls will try to load them. If only one can be
665loaded at a time, just checking if Python 2 or 3 are available will prevent
666the other one from being available.
Bram Moolenaar6df6f472010-07-18 18:04:50 +0200667
668==============================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +0000669 vim:tw=78:ts=8:ft=help:norl: