annotate runtime/doc/if_pyth.txt @ 4379:a2f03b41dca7 v7.3.938

updated for version 7.3.938 Problem: Python: not easy to get to window number. Solution: Add vim.window.number. (ZyX)
author Bram Moolenaar <bram@vim.org>
date Sun, 12 May 2013 19:00:41 +0200
parents cf1d93a3914a
children e2db42528a5b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4358
cf1d93a3914a Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 4350
diff changeset
1 *if_pyth.txt* For Vim version 7.3. Last change: 2013 May 06
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|
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
14 6. pyeval(), py3eval() Vim functions |python-pyeval|
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
15 7. Dynamic loading |python-dynamic|
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
16 8. Python 3 |python3|
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
17
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
18 {Vi does not have any of these commands}
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
19
2350
06feaf4fe36a Rename some "python3" symbols to "py3", as the command name.
Bram Moolenaar <bram@vim.org>
parents: 2345
diff changeset
20 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
21 |+python| feature.
2350
06feaf4fe36a Rename some "python3" symbols to "py3", as the command name.
Bram Moolenaar <bram@vim.org>
parents: 2345
diff changeset
22 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
23 |+python3| feature.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
24
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
25 ==============================================================================
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
26 1. Commands *python-commands*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
27
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
28 *:python* *:py* *E205* *E263* *E264*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
29 :[range]py[thon] {stmt}
3750
536aa8b0c934 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3682
diff changeset
30 Execute Python statement {stmt}. A simple check if
536aa8b0c934 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3682
diff changeset
31 the `:python` command is working: >
536aa8b0c934 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3682
diff changeset
32 :python print "Hello"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
33
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
34 :[range]py[thon] << {endmarker}
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
35 {script}
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
36 {endmarker}
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
37 Execute Python script {script}.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
38 Note: This command doesn't work when the Python
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
39 feature wasn't compiled in. To avoid errors, see
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
40 |script-here|.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
41
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
42 {endmarker} must NOT be preceded by any white space. If {endmarker} is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
43 omitted from after the "<<", a dot '.' must be used after {script}, like
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
44 for the |:append| and |:insert| commands.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
45 This form of the |:python| command is mainly useful for including python code
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
46 in Vim scripts.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
47
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
48 Example: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
49 function! IcecreamInitialize()
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
50 python << EOF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
51 class StrawberryIcecream:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
52 def __call__(self):
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
53 print 'EAT ME'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
54 EOF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
55 endfunction
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
56 <
4073
e362db8b2d7b Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3847
diff changeset
57 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
58 and "EOF" do not have any indent.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
59
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
60 *:pyfile* *:pyf*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
61 :[range]pyf[ile] {file}
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
62 Execute the Python script in {file}. The whole
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
63 argument is used as a single file name. {not in Vi}
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
64
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
65 Both of these commands do essentially the same thing - they execute a piece of
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
66 Python code, with the "current range" |python-range| set to the given line
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
67 range.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
68
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
69 In the case of :python, the code to execute is in the command-line.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
70 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
71
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
72 Python commands cannot be used in the |sandbox|.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
73
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
74 To pass arguments you need to set sys.argv[] explicitly. Example: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
75
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
76 :python import sys
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
77 :python sys.argv = ["foo", "bar"]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
78 :pyfile myscript.py
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
79
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
80 Here are some examples *python-examples* >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
81
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
82 :python from vim import *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
83 :python from string import upper
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
84 :python current.line = upper(current.line)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
85 :python print "Hello"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
86 :python str = current.buffer[42]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
87
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
88 (Note that changes - like the imports - persist from one command to the next,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
89 just like in the Python interpreter.)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
90
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
91 ==============================================================================
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
92 2. The vim module *python-vim*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
93
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
94 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
95 |python-output| below) via the "vim" module. The vim module implements two
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
96 methods, three constants, and one error object. You need to import the vim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
97 module before using it: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
98 :python import vim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
99
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
100 Overview >
20
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
101 :py print "Hello" # displays a message
2033
de5a43c5eedc Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents: 1702
diff changeset
102 :py vim.command(cmd) # execute an Ex command
20
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
103 :py w = vim.windows[n] # gets window "n"
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
104 :py cw = vim.current.window # gets the current window
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
105 :py b = vim.buffers[n] # gets buffer "n"
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
106 :py cb = vim.current.buffer # gets the current buffer
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
107 :py w.height = lines # sets the window height
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
108 :py w.cursor = (row, col) # sets the window cursor position
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
109 :py pos = w.cursor # gets a tuple (row, col)
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
110 :py name = b.name # gets the buffer file name
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
111 :py line = b[n] # gets a line from the buffer
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
112 :py lines = b[n:m] # gets a list of lines
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
113 :py num = len(b) # gets the number of lines
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
114 :py b[n] = str # sets a line in the buffer
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
115 :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
116 :py del b[n] # deletes a line
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
117 :py del b[n:m] # deletes a number of lines
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
118
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
119
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
120 Methods of the "vim" module
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
121
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
122 vim.command(str) *python-command*
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
123 Executes the vim (ex-mode) command str. Returns None.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
124 Examples: >
20
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
125 :py vim.command("set tw=72")
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
126 :py vim.command("%s/aaa/bbb/g")
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
127 < The following definition executes Normal mode commands: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
128 def normal(str):
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
129 vim.command("normal "+str)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
130 # Note the use of single quotes to delimit a string containing
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
131 # double quotes
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
132 normal('"a2dd"aP')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
133 < *E659*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
134 The ":python" command cannot be used recursively with Python 2.2 and
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
135 older. This only works with Python 2.3 and later: >
20
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
136 :py vim.command("python print 'Hello again Python'")
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
137
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
138 vim.eval(str) *python-eval*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
139 Evaluates the expression str using the vim internal expression
633
7437be625546 updated for version 7.0183
vimboss
parents: 557
diff changeset
140 evaluator (see |expression|). Returns the expression result as:
7437be625546 updated for version 7.0183
vimboss
parents: 557
diff changeset
141 - a string if the Vim expression evaluates to a string or number
7437be625546 updated for version 7.0183
vimboss
parents: 557
diff changeset
142 - a list if the Vim expression evaluates to a Vim list
856
8cd729851562 updated for version 7.0g
vimboss
parents: 842
diff changeset
143 - a dictionary if the Vim expression evaluates to a Vim dictionary
633
7437be625546 updated for version 7.0183
vimboss
parents: 557
diff changeset
144 Dictionaries and lists are recursively expanded.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
145 Examples: >
20
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
146 :py text_width = vim.eval("&tw")
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
147 :py str = vim.eval("12+12") # NB result is a string! Use
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
148 # string.atoi() to convert to
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
149 # a number.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
150
856
8cd729851562 updated for version 7.0g
vimboss
parents: 842
diff changeset
151 :py tagList = vim.eval('taglist("eval_expr")')
633
7437be625546 updated for version 7.0183
vimboss
parents: 557
diff changeset
152 < The latter will return a python list of python dicts, for instance:
7437be625546 updated for version 7.0183
vimboss
parents: 557
diff changeset
153 [{'cmd': '/^eval_expr(arg, nextcmd)$/', 'static': 0, 'name':
7437be625546 updated for version 7.0183
vimboss
parents: 557
diff changeset
154 'eval_expr', 'kind': 'f', 'filename': './src/eval.c'}]
7437be625546 updated for version 7.0183
vimboss
parents: 557
diff changeset
155
3682
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
156 vim.bindeval(str) *python-bindeval*
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
157 Like |python-eval|, but
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
158 1. if expression evaluates to |List| or |Dictionary| it is returned as
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
159 vimlist or vimdictionary python type that are connected to original
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
160 list or dictionary. Thus modifications to these objects imply
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
161 modifications of the original.
3830
04592728474a Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3750
diff changeset
162
04592728474a Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3750
diff changeset
163 Additionally, vimlist and vimdictionary type have read-write
04592728474a Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3750
diff changeset
164 `.locked` attribute that returns
04592728474a Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3750
diff changeset
165 Value Meaning ~
04592728474a Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3750
diff changeset
166 zero Variable is not locked
04592728474a Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3750
diff changeset
167 vim.VAR_LOCKED Variable is locked, but can be unlocked
3847
1003f9b262d7 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3830
diff changeset
168 vim.VAR_FIXED Variable is locked and can't be unlocked
3830
04592728474a Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3750
diff changeset
169 integer constants. If variable is not fixed, you can do
04592728474a Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3750
diff changeset
170 `var.locked=True` to lock it and `var.locked=False` to unlock.
04592728474a Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3750
diff changeset
171 There is no recursive locking like |:lockvar|! does. There is also
04592728474a Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3750
diff changeset
172 no way to lock a specific key or check whether it is locked (in any
04592728474a Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3750
diff changeset
173 case these locks are ignored by anything except |:let|: |extend()|
04592728474a Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3750
diff changeset
174 does not care, neither does python interface).
04592728474a Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3750
diff changeset
175
04592728474a Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3750
diff changeset
176 Vimdictionary type also supports `.scope` attribute which is one of
04592728474a Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3750
diff changeset
177 Value Meaning ~
04592728474a Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3750
diff changeset
178 zero Dictionary is not a scope one
04592728474a Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3750
diff changeset
179 vim.VAR_DEF_SCOPE Function-local or global scope dictionary
04592728474a Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3750
diff changeset
180 vim.VAR_SCOPE Other scope dictionary
04592728474a Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3750
diff changeset
181
3682
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
182 2. if expression evaluates to a function reference, then it returns
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
183 callable vimfunction object. Use self keyword argument to assign
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
184 |self| object for dictionary functions.
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
185
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
186 Note: this function has the same behavior as |lua-eval| (except that
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
187 lua does not support running vim functions), |python-eval| is
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
188 kept for backwards compatibility in order not to make scripts
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
189 relying on outputs of vim.eval() being a copy of original or
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
190 vim.eval("1") returning a string.
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
191
633
7437be625546 updated for version 7.0183
vimboss
parents: 557
diff changeset
192
7437be625546 updated for version 7.0183
vimboss
parents: 557
diff changeset
193
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
194 Error object of the "vim" module
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
195
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
196 vim.error *python-error*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
197 Upon encountering a Vim error, Python raises an exception of type
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
198 vim.error.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
199 Example: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
200 try:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
201 vim.command("put a")
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
202 except vim.error:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
203 # nothing in register a
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
204
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
205 Constants of the "vim" module
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
206
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
207 Note that these are not actually constants - you could reassign them.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
208 But this is silly, as you would then lose access to the vim objects
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
209 to which the variables referred.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
210
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
211 vim.buffers *python-buffers*
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
212 A sequence object providing access to the list of vim buffers. The
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
213 object supports the following operations: >
20
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
214 :py b = vim.buffers[i] # Indexing (read-only)
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
215 :py b in vim.buffers # Membership test
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
216 :py n = len(vim.buffers) # Number of elements
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
217 :py for b in vim.buffers: # Sequential access
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
218 <
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
219 vim.windows *python-windows*
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
220 A sequence object providing access to the list of vim windows. The
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
221 object supports the following operations: >
20
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
222 :py w = vim.windows[i] # Indexing (read-only)
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
223 :py w in vim.windows # Membership test
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
224 :py n = len(vim.windows) # Number of elements
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
225 :py for w in vim.windows: # Sequential access
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
226 <
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
227 vim.current *python-current*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
228 An object providing access (via specific attributes) to various
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
229 "current" objects available in vim:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
230 vim.current.line The current line (RW) String
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
231 vim.current.buffer The current buffer (RO) Buffer
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
232 vim.current.window The current window (RO) Window
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
233 vim.current.range The current line range (RO) Range
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
234
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
235 The last case deserves a little explanation. When the :python or
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
236 :pyfile command specifies a range, this range of lines becomes the
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
237 "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
238 restricted to a subset of lines. See |python-range| for more details.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
239
4323
f1eab4f77a6f updated for version 7.3.911
Bram Moolenaar <bram@vim.org>
parents: 4098
diff changeset
240 vim.vars *python-vars*
f1eab4f77a6f updated for version 7.3.911
Bram Moolenaar <bram@vim.org>
parents: 4098
diff changeset
241 vim.vvars *python-vvars*
f1eab4f77a6f updated for version 7.3.911
Bram Moolenaar <bram@vim.org>
parents: 4098
diff changeset
242 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
243 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
244 but faster.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
245
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
246 vim.options *python-options*
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
247 Object partly supporting mapping protocol (supports setting and
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
248 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
249 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
250 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
251 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
252 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
253 |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
254 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
255 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
256 window-local options.
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
257
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
258 Output from Python *python-output*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
259 Vim displays all Python code output in the Vim message area. Normal
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
260 output appears as information messages, and error output appears as
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
261 error messages.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
262
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
263 In implementation terms, this means that all output to sys.stdout
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
264 (including the output from print statements) appears as information
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
265 messages, and all output to sys.stderr (including error tracebacks)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
266 appears as error messages.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
267
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
268 *python-input*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
269 Input (via sys.stdin, including input() and raw_input()) is not
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
270 supported, and may cause the program to crash. This should probably be
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
271 fixed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
272
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
273 ==============================================================================
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
274 3. Buffer objects *python-buffer*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
275
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
276 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
277 - via vim.current.buffer (|python-current|)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
278 - from indexing vim.buffers (|python-buffers|)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
279 - from the "buffer" attribute of a window (|python-window|)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
280
3312
b7811ab264bf updated for version 7.3.423
Bram Moolenaar <bram@vim.org>
parents: 3082
diff changeset
281 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
282 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
283 (append, mark, and range; see below).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
284
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
285 You can also treat buffer objects as sequence objects. In this context, they
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
286 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
287 element being a line of the buffer. All of the usual sequence operations,
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
288 including indexing, index assignment, slicing and slice assignment, work as
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
289 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
290 string (list of strings). This has one unusual consequence - b[:] is different
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
291 from b. In particular, "b[:] = None" deletes the whole of the buffer, whereas
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
292 "b = None" merely updates the variable b, with no effect on the buffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
293
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
294 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
295 line numbers, which start from 1. This is particularly relevant when dealing
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
296 with marks (see below) which use vim line numbers.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
297
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
298 The buffer object attributes are:
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
299 b.vars Dictionary-like object used to access
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
300 |buffer-variable|s.
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
301 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
302 deleting) that provides access to buffer-local options
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
303 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
304 |python-window|.options if option is window-local,
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
305 this object will raise KeyError. If option is
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
306 |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
307 will return None.
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
308
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
309 The buffer object methods are:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
310 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
311 b.append(str, nr) Idem, below line "nr"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
312 b.append(list) Append a list of lines to the buffer
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
313 Note that the option of supplying a list of strings to
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
314 the append method differs from the equivalent method
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
315 for Python's built-in list objects.
2391
f1d95a986dfb Document extra argument for Python append().
Bram Moolenaar <bram@vim.org>
parents: 2366
diff changeset
316 b.append(list, nr) Idem, below line "nr"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
317 b.mark(name) Return a tuple (row,col) representing the position
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
318 of the named mark (can also get the []"<> marks)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
319 b.range(s,e) Return a range object (see |python-range|) which
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
320 represents the part of the given buffer between line
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
321 numbers s and e |inclusive|.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
322
20
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
323 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
324 A trailing '\n' is allowed and ignored, so that you can do: >
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
325 :py b.append(f.readlines())
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
326
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
327 Examples (assume b is the current buffer) >
20
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
328 :py print b.name # write the buffer file name
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
329 :py b[0] = "hello!!!" # replace the top line
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
330 :py b[:] = None # delete the whole buffer
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
331 :py del b[:] # delete the whole buffer
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
332 :py b[0:0] = [ "a line" ] # add a line at the top
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
333 :py del b[2] # delete a line (the third)
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
334 :py b.append("bottom") # add a line at the bottom
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
335 :py n = len(b) # number of lines
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
336 :py (row,col) = b.mark('a') # named mark
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
337 :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
338 :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
339 :py b.options["ff"] = "dos" # set fileformat
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
340 :py del b.options["ar"] # same as :set autoread<
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
341
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
342 ==============================================================================
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
343 4. Range objects *python-range*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
344
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
345 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
346 number of ways:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
347 - via vim.current.range (|python-current|)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
348 - from a buffer's range() method (|python-buffer|)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
349
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
350 A range object is almost identical in operation to a buffer object. However,
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
351 all operations are restricted to the lines within the range (this line range
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
352 can, of course, change as a result of slice assignments, line deletions, or
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
353 the range.append() method).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
354
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
355 The range object attributes are:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
356 r.start Index of first line into the buffer
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
357 r.end Index of last line into the buffer
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
358
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
359 The range object methods are:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
360 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
361 r.append(str, nr) Idem, after line "nr"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
362 r.append(list) Append a list of lines to the range
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
363 Note that the option of supplying a list of strings to
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
364 the append method differs from the equivalent method
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
365 for Python's built-in list objects.
2391
f1d95a986dfb Document extra argument for Python append().
Bram Moolenaar <bram@vim.org>
parents: 2366
diff changeset
366 r.append(list, nr) Idem, after line "nr"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
367
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
368 Example (assume r is the current range):
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
369 # Send all lines in a range to the default printer
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
370 vim.command("%d,%dhardcopy!" % (r.start+1,r.end+1))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
371
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
372 ==============================================================================
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
373 5. Window objects *python-window*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
374
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
375 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
376 - via vim.current.window (|python-current|)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
377 - from indexing vim.windows (|python-windows|)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
378
236
4707450c2b33 updated for version 7.0066
vimboss
parents: 20
diff changeset
379 You can manipulate window objects only through their attributes. They have no
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
380 methods, and no sequence or other interface.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
381
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
382 Window attributes are:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
383 buffer (read-only) The buffer displayed in this window
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
384 cursor (read-write) The current cursor position in the window
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
385 This is a tuple, (row,col).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
386 height (read-write) The window height, in rows
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
387 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
388 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
389 unassignable, but you can change window
f1eab4f77a6f updated for version 7.3.911
Bram Moolenaar <bram@vim.org>
parents: 4098
diff changeset
390 variables this way
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
391 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
392 unassignable, but you can change window
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
393 options this way. Provides access only to
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
394 window-local options, for buffer-local use
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
395 |python-buffer| and for global ones use
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
396 |python-options|. If option is |global-local|
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
397 and local value is missing getting it will
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4323
diff changeset
398 return None.
4379
a2f03b41dca7 updated for version 7.3.938
Bram Moolenaar <bram@vim.org>
parents: 4358
diff changeset
399 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
400 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
401 (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
402 tab page).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
403 The height attribute is writable only if the screen is split horizontally.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
404 The width attribute is writable only if the screen is split vertically.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
405
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
406 ==============================================================================
3682
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
407 6. pyeval() and py3eval() Vim functions *python-pyeval*
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
408
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
409 To facilitate bi-directional interface, you can use |pyeval()| and |py3eval()|
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
410 functions to evaluate Python expressions and pass their values to VimL.
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
411
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
412 ==============================================================================
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
413 7. Dynamic loading *python-dynamic*
557
862863033fdd updated for version 7.0158
vimboss
parents: 236
diff changeset
414
862863033fdd updated for version 7.0158
vimboss
parents: 236
diff changeset
415 On MS-Windows the Python library can be loaded dynamically. The |:version|
862863033fdd updated for version 7.0158
vimboss
parents: 236
diff changeset
416 output then includes |+python/dyn|.
862863033fdd updated for version 7.0158
vimboss
parents: 236
diff changeset
417
862863033fdd updated for version 7.0158
vimboss
parents: 236
diff changeset
418 This means that Vim will search for the Python DLL file only when needed.
862863033fdd updated for version 7.0158
vimboss
parents: 236
diff changeset
419 When you don't use the Python interface you don't need it, thus you can use
862863033fdd updated for version 7.0158
vimboss
parents: 236
diff changeset
420 Vim without this DLL file.
862863033fdd updated for version 7.0158
vimboss
parents: 236
diff changeset
421
862863033fdd updated for version 7.0158
vimboss
parents: 236
diff changeset
422 To use the Python interface the Python DLL must be in your search path. In a
862863033fdd updated for version 7.0158
vimboss
parents: 236
diff changeset
423 console window type "path" to see what directories are used.
862863033fdd updated for version 7.0158
vimboss
parents: 236
diff changeset
424
862863033fdd updated for version 7.0158
vimboss
parents: 236
diff changeset
425 The name of the DLL must match the Python version Vim was compiled with.
862863033fdd updated for version 7.0158
vimboss
parents: 236
diff changeset
426 Currently the name is "python24.dll". That is for Python 2.4. To know for
862863033fdd updated for version 7.0158
vimboss
parents: 236
diff changeset
427 sure edit "gvim.exe" and search for "python\d*.dll\c".
862863033fdd updated for version 7.0158
vimboss
parents: 236
diff changeset
428
862863033fdd updated for version 7.0158
vimboss
parents: 236
diff changeset
429 ==============================================================================
3682
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
430 8. Python 3 *python3*
2340
99c1eba60b2d Make automatic prototype generation work with more interfaces.
Bram Moolenaar <bram@vim.org>
parents: 2154
diff changeset
431
2560
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
432 *:py3* *:python3*
3750
536aa8b0c934 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3682
diff changeset
433 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
434 if the `:py3` command is working: >
3750
536aa8b0c934 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3682
diff changeset
435 :py3 print("Hello")
536aa8b0c934 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3682
diff changeset
436 < *:py3file*
2409
0ca06a92adfb Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents: 2391
diff changeset
437 The |:py3file| command works similar to |:pyfile|.
2340
99c1eba60b2d Make automatic prototype generation work with more interfaces.
Bram Moolenaar <bram@vim.org>
parents: 2154
diff changeset
438
3682
11d40fc82f11 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3312
diff changeset
439
2409
0ca06a92adfb Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents: 2391
diff changeset
440 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
441 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
442 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
443 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
444 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
445
2560
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
446 Some more details on the special case 4:
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
447
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
448 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
449
2560
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
450 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
451 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
452 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
453 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
454 symbols to be provided by Vim.
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
455 *E836* *E837*
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
456 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
457 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
458 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
459 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
460 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
461
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
462 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
463 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
464 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
465 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
466 libPython.
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
467
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
468 To work around such problems there are these options:
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
469 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
470 libpython.so.
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
471 2. Vim is recompiled for only one Python version.
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
472 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
473 may crash Vim though.
84ba6293f9d7 Preparations for 7.3f release.
Bram Moolenaar <bram@vim.org>
parents: 2554
diff changeset
474
2826
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2608
diff changeset
475 *has-python*
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2608
diff changeset
476 You can test what Python version is available with: >
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2608
diff changeset
477 if has('python')
3082
3502a7f991fc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2826
diff changeset
478 echo 'there is Python 2.x'
2826
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2608
diff changeset
479 elseif has('python3')
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2608
diff changeset
480 echo 'there is Python 3.x'
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2608
diff changeset
481 endif
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2608
diff changeset
482
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2608
diff changeset
483 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
484 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
485 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
486 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
487
99c1eba60b2d Make automatic prototype generation work with more interfaces.
Bram Moolenaar <bram@vim.org>
parents: 2154
diff changeset
488 ==============================================================================
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
489 vim:tw=78:ts=8:ft=help:norl: