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