Bram Moolenaar | 50ba526 | 2016-09-22 22:33:02 +0200 | [diff] [blame] | 1 | *if_pyth.txt* For Vim version 8.0. Last change: 2016 Sep 17 |
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| |
Bram Moolenaar | cac867a | 2013-05-21 19:50:34 +0200 | [diff] [blame] | 14 | 6. Tab page objects |python-tabpage| |
Bram Moolenaar | a9922d6 | 2013-05-30 13:01:18 +0200 | [diff] [blame] | 15 | 7. vim.bindeval objects |python-bindeval-objects| |
| 16 | 8. pyeval(), py3eval() Vim functions |python-pyeval| |
| 17 | 9. Dynamic loading |python-dynamic| |
| 18 | 10. Python 3 |python3| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 19 | |
| 20 | {Vi does not have any of these commands} |
| 21 | |
Bram Moolenaar | 368373e | 2010-07-19 20:46:22 +0200 | [diff] [blame] | 22 | 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] | 23 | |+python| feature. |
Bram Moolenaar | 368373e | 2010-07-19 20:46:22 +0200 | [diff] [blame] | 24 | The Python 3 interface is available only when Vim was compiled with the |
| 25 | |+python3| feature. |
Bram Moolenaar | 9ba7e17 | 2013-07-17 22:37:26 +0200 | [diff] [blame] | 26 | Both can be available at the same time, but read |python-2-and-3|. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 27 | |
| 28 | ============================================================================== |
| 29 | 1. Commands *python-commands* |
| 30 | |
Bram Moolenaar | dbc2802 | 2014-07-26 13:40:44 +0200 | [diff] [blame] | 31 | *:python* *:py* *E263* *E264* *E887* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 32 | :[range]py[thon] {stmt} |
Bram Moolenaar | 9b45125 | 2012-08-15 17:43:31 +0200 | [diff] [blame] | 33 | Execute Python statement {stmt}. A simple check if |
| 34 | the `:python` command is working: > |
| 35 | :python print "Hello" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 36 | |
| 37 | :[range]py[thon] << {endmarker} |
| 38 | {script} |
| 39 | {endmarker} |
| 40 | Execute Python script {script}. |
| 41 | Note: This command doesn't work when the Python |
| 42 | feature wasn't compiled in. To avoid errors, see |
| 43 | |script-here|. |
| 44 | |
| 45 | {endmarker} must NOT be preceded by any white space. If {endmarker} is |
| 46 | omitted from after the "<<", a dot '.' must be used after {script}, like |
| 47 | for the |:append| and |:insert| commands. |
| 48 | This form of the |:python| command is mainly useful for including python code |
| 49 | in Vim scripts. |
| 50 | |
| 51 | Example: > |
| 52 | function! IcecreamInitialize() |
| 53 | python << EOF |
| 54 | class StrawberryIcecream: |
| 55 | def __call__(self): |
| 56 | print 'EAT ME' |
| 57 | EOF |
| 58 | endfunction |
Bram Moolenaar | 64d8e25 | 2016-09-06 22:12:34 +0200 | [diff] [blame] | 59 | |
| 60 | To see what version of Python you have: > |
| 61 | :python import sys |
| 62 | :python print(sys.version) |
| 63 | |
Bram Moolenaar | a3e6bc9 | 2013-01-30 14:18:00 +0100 | [diff] [blame] | 64 | Note: Python is very sensitive to the indenting. Make sure the "class" line |
| 65 | and "EOF" do not have any indent. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 66 | |
Bram Moolenaar | d620aa9 | 2013-05-17 16:40:06 +0200 | [diff] [blame] | 67 | *:pydo* |
| 68 | :[range]pydo {body} Execute Python function "def _vim_pydo(line, linenr): |
| 69 | {body}" for each line in the [range], with the |
| 70 | function arguments being set to the text of each line |
| 71 | in turn, without a trailing <EOL>, and the current |
| 72 | line number. The function should return a string or |
| 73 | None. If a string is returned, it becomes the text of |
| 74 | the line in the current turn. The default for [range] |
| 75 | is the whole file: "1,$". |
| 76 | {not in Vi} |
| 77 | |
| 78 | Examples: |
| 79 | > |
| 80 | :pydo return "%s\t%d" % (line[::-1], len(line)) |
| 81 | :pydo if line: return "%4d: %s" % (linenr, line) |
| 82 | < |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 83 | *:pyfile* *:pyf* |
| 84 | :[range]pyf[ile] {file} |
| 85 | Execute the Python script in {file}. The whole |
| 86 | argument is used as a single file name. {not in Vi} |
| 87 | |
| 88 | Both of these commands do essentially the same thing - they execute a piece of |
| 89 | Python code, with the "current range" |python-range| set to the given line |
| 90 | range. |
| 91 | |
| 92 | In the case of :python, the code to execute is in the command-line. |
| 93 | In the case of :pyfile, the code to execute is the contents of the given file. |
| 94 | |
| 95 | Python commands cannot be used in the |sandbox|. |
| 96 | |
| 97 | To pass arguments you need to set sys.argv[] explicitly. Example: > |
| 98 | |
| 99 | :python import sys |
| 100 | :python sys.argv = ["foo", "bar"] |
| 101 | :pyfile myscript.py |
| 102 | |
| 103 | Here are some examples *python-examples* > |
| 104 | |
| 105 | :python from vim import * |
| 106 | :python from string import upper |
| 107 | :python current.line = upper(current.line) |
| 108 | :python print "Hello" |
| 109 | :python str = current.buffer[42] |
| 110 | |
| 111 | (Note that changes - like the imports - persist from one command to the next, |
| 112 | just like in the Python interpreter.) |
| 113 | |
| 114 | ============================================================================== |
| 115 | 2. The vim module *python-vim* |
| 116 | |
| 117 | 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] | 118 | |python-output| below) via the "vim" module. The vim module implements two |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 119 | methods, three constants, and one error object. You need to import the vim |
| 120 | module before using it: > |
| 121 | :python import vim |
| 122 | |
| 123 | Overview > |
Bram Moolenaar | 5eb86f9 | 2004-07-26 12:53:41 +0000 | [diff] [blame] | 124 | :py print "Hello" # displays a message |
Bram Moolenaar | 8f3f58f | 2010-01-06 20:52:26 +0100 | [diff] [blame] | 125 | :py vim.command(cmd) # execute an Ex command |
Bram Moolenaar | 5eb86f9 | 2004-07-26 12:53:41 +0000 | [diff] [blame] | 126 | :py w = vim.windows[n] # gets window "n" |
| 127 | :py cw = vim.current.window # gets the current window |
| 128 | :py b = vim.buffers[n] # gets buffer "n" |
| 129 | :py cb = vim.current.buffer # gets the current buffer |
| 130 | :py w.height = lines # sets the window height |
| 131 | :py w.cursor = (row, col) # sets the window cursor position |
| 132 | :py pos = w.cursor # gets a tuple (row, col) |
| 133 | :py name = b.name # gets the buffer file name |
| 134 | :py line = b[n] # gets a line from the buffer |
| 135 | :py lines = b[n:m] # gets a list of lines |
| 136 | :py num = len(b) # gets the number of lines |
| 137 | :py b[n] = str # sets a line in the buffer |
| 138 | :py b[n:m] = [str1, str2, str3] # sets a number of lines at once |
| 139 | :py del b[n] # deletes a line |
| 140 | :py del b[n:m] # deletes a number of lines |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 141 | |
| 142 | |
| 143 | Methods of the "vim" module |
| 144 | |
| 145 | vim.command(str) *python-command* |
Bram Moolenaar | 402d2fe | 2005-04-15 21:00:38 +0000 | [diff] [blame] | 146 | Executes the vim (ex-mode) command str. Returns None. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 147 | Examples: > |
Bram Moolenaar | 5eb86f9 | 2004-07-26 12:53:41 +0000 | [diff] [blame] | 148 | :py vim.command("set tw=72") |
| 149 | :py vim.command("%s/aaa/bbb/g") |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 150 | < The following definition executes Normal mode commands: > |
| 151 | def normal(str): |
| 152 | vim.command("normal "+str) |
| 153 | # Note the use of single quotes to delimit a string containing |
| 154 | # double quotes |
| 155 | normal('"a2dd"aP') |
| 156 | < *E659* |
| 157 | The ":python" command cannot be used recursively with Python 2.2 and |
| 158 | older. This only works with Python 2.3 and later: > |
Bram Moolenaar | 5eb86f9 | 2004-07-26 12:53:41 +0000 | [diff] [blame] | 159 | :py vim.command("python print 'Hello again Python'") |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 160 | |
| 161 | vim.eval(str) *python-eval* |
| 162 | Evaluates the expression str using the vim internal expression |
Bram Moolenaar | 2d3f489 | 2006-01-20 23:02:51 +0000 | [diff] [blame] | 163 | evaluator (see |expression|). Returns the expression result as: |
| 164 | - a string if the Vim expression evaluates to a string or number |
| 165 | - a list if the Vim expression evaluates to a Vim list |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 166 | - a dictionary if the Vim expression evaluates to a Vim dictionary |
Bram Moolenaar | 2d3f489 | 2006-01-20 23:02:51 +0000 | [diff] [blame] | 167 | Dictionaries and lists are recursively expanded. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 168 | Examples: > |
Bram Moolenaar | 5eb86f9 | 2004-07-26 12:53:41 +0000 | [diff] [blame] | 169 | :py text_width = vim.eval("&tw") |
| 170 | :py str = vim.eval("12+12") # NB result is a string! Use |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 171 | # string.atoi() to convert to |
| 172 | # a number. |
| 173 | |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 174 | :py tagList = vim.eval('taglist("eval_expr")') |
Bram Moolenaar | 2d3f489 | 2006-01-20 23:02:51 +0000 | [diff] [blame] | 175 | < The latter will return a python list of python dicts, for instance: |
| 176 | [{'cmd': '/^eval_expr(arg, nextcmd)$/', 'static': 0, 'name': |
| 177 | 'eval_expr', 'kind': 'f', 'filename': './src/eval.c'}] |
| 178 | |
Bram Moolenaar | 30b6581 | 2012-07-12 22:01:11 +0200 | [diff] [blame] | 179 | vim.bindeval(str) *python-bindeval* |
Bram Moolenaar | a9922d6 | 2013-05-30 13:01:18 +0200 | [diff] [blame] | 180 | Like |python-eval|, but returns special objects described in |
| 181 | |python-bindeval-objects|. These python objects let you modify (|List| |
Bram Moolenaar | de71b56 | 2013-06-02 17:41:54 +0200 | [diff] [blame] | 182 | or |Dictionary|) or call (|Funcref|) vim objects. |
Bram Moolenaar | 2d3f489 | 2006-01-20 23:02:51 +0000 | [diff] [blame] | 183 | |
Bram Moolenaar | bc41196 | 2013-06-02 17:46:40 +0200 | [diff] [blame] | 184 | vim.strwidth(str) *python-strwidth* |
| 185 | Like |strwidth()|: returns number of display cells str occupies, tab |
| 186 | is counted as one cell. |
| 187 | |
Bram Moolenaar | c09a6d6 | 2013-06-10 21:27:29 +0200 | [diff] [blame] | 188 | vim.foreach_rtp(callable) *python-foreach_rtp* |
| 189 | Call the given callable for each path in 'runtimepath' until either |
| 190 | callable returns something but None, the exception is raised or there |
| 191 | are no longer paths. If stopped in case callable returned non-None, |
| 192 | vim.foreach_rtp function returns the value returned by callable. |
| 193 | |
Bram Moolenaar | f425830 | 2013-06-02 18:20:17 +0200 | [diff] [blame] | 194 | vim.chdir(*args, **kwargs) *python-chdir* |
| 195 | vim.fchdir(*args, **kwargs) *python-fchdir* |
| 196 | Run os.chdir or os.fchdir, then all appropriate vim stuff. |
| 197 | Note: you should not use these functions directly, use os.chdir and |
| 198 | os.fchdir instead. Behavior of vim.fchdir is undefined in case |
| 199 | os.fchdir does not exist. |
| 200 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 201 | Error object of the "vim" module |
| 202 | |
| 203 | vim.error *python-error* |
| 204 | Upon encountering a Vim error, Python raises an exception of type |
| 205 | vim.error. |
| 206 | Example: > |
| 207 | try: |
| 208 | vim.command("put a") |
| 209 | except vim.error: |
| 210 | # nothing in register a |
| 211 | |
| 212 | Constants of the "vim" module |
| 213 | |
| 214 | Note that these are not actually constants - you could reassign them. |
| 215 | But this is silly, as you would then lose access to the vim objects |
| 216 | to which the variables referred. |
| 217 | |
| 218 | vim.buffers *python-buffers* |
Bram Moolenaar | dfa38d4 | 2013-05-15 13:38:47 +0200 | [diff] [blame] | 219 | A mapping object providing access to the list of vim buffers. The |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 220 | object supports the following operations: > |
Bram Moolenaar | 5eb86f9 | 2004-07-26 12:53:41 +0000 | [diff] [blame] | 221 | :py b = vim.buffers[i] # Indexing (read-only) |
| 222 | :py b in vim.buffers # Membership test |
| 223 | :py n = len(vim.buffers) # Number of elements |
Bram Moolenaar | b6c589a | 2013-05-15 14:39:52 +0200 | [diff] [blame] | 224 | :py for b in vim.buffers: # Iterating over buffer list |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 225 | < |
| 226 | vim.windows *python-windows* |
Bram Moolenaar | 402d2fe | 2005-04-15 21:00:38 +0000 | [diff] [blame] | 227 | A sequence object providing access to the list of vim windows. The |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 228 | object supports the following operations: > |
Bram Moolenaar | 5eb86f9 | 2004-07-26 12:53:41 +0000 | [diff] [blame] | 229 | :py w = vim.windows[i] # Indexing (read-only) |
| 230 | :py w in vim.windows # Membership test |
| 231 | :py n = len(vim.windows) # Number of elements |
| 232 | :py for w in vim.windows: # Sequential access |
Bram Moolenaar | de71b56 | 2013-06-02 17:41:54 +0200 | [diff] [blame] | 233 | < Note: vim.windows object always accesses current tab page. |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 234 | |python-tabpage|.windows objects are bound to parent |python-tabpage| |
| 235 | object and always use windows from that tab page (or throw vim.error |
| 236 | in case tab page was deleted). You can keep a reference to both |
| 237 | without keeping a reference to vim module object or |python-tabpage|, |
Bram Moolenaar | e9ba516 | 2013-05-29 22:02:22 +0200 | [diff] [blame] | 238 | they will not lose their properties in this case. |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 239 | |
| 240 | vim.tabpages *python-tabpages* |
| 241 | A sequence object providing access to the list of vim tab pages. The |
| 242 | object supports the following operations: > |
| 243 | :py t = vim.tabpages[i] # Indexing (read-only) |
| 244 | :py t in vim.tabpages # Membership test |
| 245 | :py n = len(vim.tabpages) # Number of elements |
| 246 | :py for t in vim.tabpages: # Sequential access |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 247 | < |
| 248 | vim.current *python-current* |
| 249 | An object providing access (via specific attributes) to various |
| 250 | "current" objects available in vim: |
| 251 | vim.current.line The current line (RW) String |
Bram Moolenaar | e761459 | 2013-05-15 15:51:08 +0200 | [diff] [blame] | 252 | vim.current.buffer The current buffer (RW) Buffer |
| 253 | vim.current.window The current window (RW) Window |
| 254 | vim.current.tabpage The current tab page (RW) TabPage |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 255 | vim.current.range The current line range (RO) Range |
| 256 | |
Bram Moolenaar | 402d2fe | 2005-04-15 21:00:38 +0000 | [diff] [blame] | 257 | The last case deserves a little explanation. When the :python or |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 258 | :pyfile command specifies a range, this range of lines becomes the |
Bram Moolenaar | 402d2fe | 2005-04-15 21:00:38 +0000 | [diff] [blame] | 259 | "current range". A range is a bit like a buffer, but with all access |
| 260 | restricted to a subset of lines. See |python-range| for more details. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 261 | |
Bram Moolenaar | e761459 | 2013-05-15 15:51:08 +0200 | [diff] [blame] | 262 | Note: When assigning to vim.current.{buffer,window,tabpage} it expects |
| 263 | valid |python-buffer|, |python-window| or |python-tabpage| objects |
| 264 | respectively. Assigning triggers normal (with |autocommand|s) |
| 265 | switching to given buffer, window or tab page. It is the only way to |
| 266 | switch UI objects in python: you can't assign to |
| 267 | |python-tabpage|.window attribute. To switch without triggering |
| 268 | autocommands use > |
| 269 | py << EOF |
| 270 | saved_eventignore = vim.options['eventignore'] |
| 271 | vim.options['eventignore'] = 'all' |
| 272 | try: |
| 273 | vim.current.buffer = vim.buffers[2] # Switch to buffer 2 |
| 274 | finally: |
| 275 | vim.options['eventignore'] = saved_eventignore |
| 276 | EOF |
| 277 | < |
Bram Moolenaar | 230bb3f | 2013-04-24 14:07:45 +0200 | [diff] [blame] | 278 | vim.vars *python-vars* |
| 279 | vim.vvars *python-vvars* |
| 280 | Dictionary-like objects holding dictionaries with global (|g:|) and |
| 281 | vim (|v:|) variables respectively. Identical to `vim.bindeval("g:")`, |
| 282 | but faster. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 283 | |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 284 | vim.options *python-options* |
| 285 | Object partly supporting mapping protocol (supports setting and |
| 286 | getting items) providing a read-write access to global options. |
| 287 | Note: unlike |:set| this provides access only to global options. You |
| 288 | cannot use this object to obtain or set local options' values or |
| 289 | access local-only options in any fashion. Raises KeyError if no global |
| 290 | option with such name exists (i.e. does not raise KeyError for |
| 291 | |global-local| options and global only options, but does for window- |
| 292 | and buffer-local ones). Use |python-buffer| objects to access to |
| 293 | buffer-local options and |python-window| objects to access to |
| 294 | window-local options. |
| 295 | |
Bram Moolenaar | cac867a | 2013-05-21 19:50:34 +0200 | [diff] [blame] | 296 | Type of this object is available via "Options" attribute of vim |
| 297 | module. |
| 298 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 299 | Output from Python *python-output* |
| 300 | Vim displays all Python code output in the Vim message area. Normal |
| 301 | output appears as information messages, and error output appears as |
| 302 | error messages. |
| 303 | |
| 304 | In implementation terms, this means that all output to sys.stdout |
| 305 | (including the output from print statements) appears as information |
| 306 | messages, and all output to sys.stderr (including error tracebacks) |
| 307 | appears as error messages. |
| 308 | |
| 309 | *python-input* |
| 310 | Input (via sys.stdin, including input() and raw_input()) is not |
Bram Moolenaar | 402d2fe | 2005-04-15 21:00:38 +0000 | [diff] [blame] | 311 | supported, and may cause the program to crash. This should probably be |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 312 | fixed. |
| 313 | |
Bram Moolenaar | c09a6d6 | 2013-06-10 21:27:29 +0200 | [diff] [blame] | 314 | *python2-directory* *python3-directory* *pythonx-directory* |
| 315 | Python 'runtimepath' handling *python-special-path* |
| 316 | |
| 317 | In python vim.VIM_SPECIAL_PATH special directory is used as a replacement for |
| 318 | the list of paths found in 'runtimepath': with this directory in sys.path and |
| 319 | vim.path_hooks in sys.path_hooks python will try to load module from |
| 320 | {rtp}/python2 (or python3) and {rtp}/pythonx (for both python versions) for |
| 321 | each {rtp} found in 'runtimepath'. |
| 322 | |
Bram Moolenaar | 81c40c5 | 2013-06-12 14:41:04 +0200 | [diff] [blame] | 323 | Implementation is similar to the following, but written in C: > |
Bram Moolenaar | c09a6d6 | 2013-06-10 21:27:29 +0200 | [diff] [blame] | 324 | |
Bram Moolenaar | 9f3685a | 2013-06-12 14:20:36 +0200 | [diff] [blame] | 325 | from imp import find_module, load_module |
| 326 | import vim |
Bram Moolenaar | c09a6d6 | 2013-06-10 21:27:29 +0200 | [diff] [blame] | 327 | import sys |
| 328 | |
Bram Moolenaar | 9f3685a | 2013-06-12 14:20:36 +0200 | [diff] [blame] | 329 | class VimModuleLoader(object): |
| 330 | def __init__(self, module): |
| 331 | self.module = module |
Bram Moolenaar | c09a6d6 | 2013-06-10 21:27:29 +0200 | [diff] [blame] | 332 | |
Bram Moolenaar | 9f3685a | 2013-06-12 14:20:36 +0200 | [diff] [blame] | 333 | def load_module(self, fullname, path=None): |
| 334 | return self.module |
Bram Moolenaar | c09a6d6 | 2013-06-10 21:27:29 +0200 | [diff] [blame] | 335 | |
Bram Moolenaar | 9f3685a | 2013-06-12 14:20:36 +0200 | [diff] [blame] | 336 | def _find_module(fullname, oldtail, path): |
| 337 | idx = oldtail.find('.') |
| 338 | if idx > 0: |
| 339 | name = oldtail[:idx] |
| 340 | tail = oldtail[idx+1:] |
| 341 | fmr = find_module(name, path) |
| 342 | module = load_module(fullname[:-len(oldtail)] + name, *fmr) |
| 343 | return _find_module(fullname, tail, module.__path__) |
| 344 | else: |
| 345 | fmr = find_module(fullname, path) |
| 346 | return load_module(fullname, *fmr) |
Bram Moolenaar | c09a6d6 | 2013-06-10 21:27:29 +0200 | [diff] [blame] | 347 | |
Bram Moolenaar | 9f3685a | 2013-06-12 14:20:36 +0200 | [diff] [blame] | 348 | # It uses vim module itself in place of VimPathFinder class: it does not |
| 349 | # matter for python which object has find_module function attached to as |
| 350 | # an attribute. |
| 351 | class VimPathFinder(object): |
Bram Moolenaar | 81c40c5 | 2013-06-12 14:41:04 +0200 | [diff] [blame] | 352 | @classmethod |
Bram Moolenaar | 9f3685a | 2013-06-12 14:20:36 +0200 | [diff] [blame] | 353 | def find_module(cls, fullname, path=None): |
| 354 | try: |
| 355 | return VimModuleLoader(_find_module(fullname, fullname, path or vim._get_paths())) |
| 356 | except ImportError: |
| 357 | return None |
Bram Moolenaar | c09a6d6 | 2013-06-10 21:27:29 +0200 | [diff] [blame] | 358 | |
Bram Moolenaar | 81c40c5 | 2013-06-12 14:41:04 +0200 | [diff] [blame] | 359 | @classmethod |
Bram Moolenaar | 9f3685a | 2013-06-12 14:20:36 +0200 | [diff] [blame] | 360 | def load_module(cls, fullname, path=None): |
| 361 | return _find_module(fullname, fullname, path or vim._get_paths()) |
Bram Moolenaar | c09a6d6 | 2013-06-10 21:27:29 +0200 | [diff] [blame] | 362 | |
Bram Moolenaar | 9f3685a | 2013-06-12 14:20:36 +0200 | [diff] [blame] | 363 | def hook(path): |
| 364 | if path == vim.VIM_SPECIAL_PATH: |
| 365 | return VimPathFinder |
| 366 | else: |
| 367 | raise ImportError |
Bram Moolenaar | c09a6d6 | 2013-06-10 21:27:29 +0200 | [diff] [blame] | 368 | |
Bram Moolenaar | 9f3685a | 2013-06-12 14:20:36 +0200 | [diff] [blame] | 369 | sys.path_hooks.append(hook) |
Bram Moolenaar | c09a6d6 | 2013-06-10 21:27:29 +0200 | [diff] [blame] | 370 | |
Bram Moolenaar | c09a6d6 | 2013-06-10 21:27:29 +0200 | [diff] [blame] | 371 | vim.VIM_SPECIAL_PATH *python-VIM_SPECIAL_PATH* |
| 372 | String constant used in conjunction with vim path hook. If path hook |
| 373 | installed by vim is requested to handle anything but path equal to |
| 374 | vim.VIM_SPECIAL_PATH constant it raises ImportError. In the only other |
| 375 | case it uses special loader. |
| 376 | |
| 377 | Note: you must not use value of this constant directly, always use |
| 378 | vim.VIM_SPECIAL_PATH object. |
| 379 | |
Bram Moolenaar | c09a6d6 | 2013-06-10 21:27:29 +0200 | [diff] [blame] | 380 | vim.find_module(...) *python-find_module* |
| 381 | vim.path_hook(path) *python-path_hook* |
| 382 | Methods or objects used to implement path loading as described above. |
| 383 | You should not be using any of these directly except for vim.path_hook |
| 384 | in case you need to do something with sys.meta_path. It is not |
| 385 | guaranteed that any of the objects will exist in the future vim |
Bram Moolenaar | 81c40c5 | 2013-06-12 14:41:04 +0200 | [diff] [blame] | 386 | versions. |
Bram Moolenaar | c09a6d6 | 2013-06-10 21:27:29 +0200 | [diff] [blame] | 387 | |
| 388 | vim._get_paths *python-_get_paths* |
| 389 | Methods returning a list of paths which will be searched for by path |
| 390 | hook. You should not rely on this method being present in future |
| 391 | versions, but can use it for debugging. |
| 392 | |
| 393 | It returns a list of {rtp}/python2 (or {rtp}/python3) and |
| 394 | {rtp}/pythonx directories for each {rtp} in 'runtimepath'. |
| 395 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 396 | ============================================================================== |
| 397 | 3. Buffer objects *python-buffer* |
| 398 | |
Bram Moolenaar | 402d2fe | 2005-04-15 21:00:38 +0000 | [diff] [blame] | 399 | 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] | 400 | - via vim.current.buffer (|python-current|) |
| 401 | - from indexing vim.buffers (|python-buffers|) |
| 402 | - from the "buffer" attribute of a window (|python-window|) |
| 403 | |
Bram Moolenaar | b8ff1fb | 2012-02-04 21:59:01 +0100 | [diff] [blame] | 404 | Buffer objects have two read-only attributes - name - the full file name for |
| 405 | the buffer, and number - the buffer number. They also have three methods |
| 406 | (append, mark, and range; see below). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 407 | |
Bram Moolenaar | 402d2fe | 2005-04-15 21:00:38 +0000 | [diff] [blame] | 408 | 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] | 409 | 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] | 410 | 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] | 411 | including indexing, index assignment, slicing and slice assignment, work as |
Bram Moolenaar | 402d2fe | 2005-04-15 21:00:38 +0000 | [diff] [blame] | 412 | you would expect. Note that the result of indexing (slicing) a buffer is a |
| 413 | string (list of strings). This has one unusual consequence - b[:] is different |
| 414 | 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] | 415 | "b = None" merely updates the variable b, with no effect on the buffer. |
| 416 | |
Bram Moolenaar | 402d2fe | 2005-04-15 21:00:38 +0000 | [diff] [blame] | 417 | Buffer indexes start at zero, as is normal in Python. This differs from vim |
| 418 | line numbers, which start from 1. This is particularly relevant when dealing |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 419 | with marks (see below) which use vim line numbers. |
| 420 | |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 421 | The buffer object attributes are: |
| 422 | b.vars Dictionary-like object used to access |
| 423 | |buffer-variable|s. |
| 424 | b.options Mapping object (supports item getting, setting and |
| 425 | deleting) that provides access to buffer-local options |
| 426 | and buffer-local values of |global-local| options. Use |
| 427 | |python-window|.options if option is window-local, |
| 428 | this object will raise KeyError. If option is |
| 429 | |global-local| and local value is missing getting it |
| 430 | will return None. |
Bram Moolenaar | e9ba516 | 2013-05-29 22:02:22 +0200 | [diff] [blame] | 431 | b.name String, RW. Contains buffer name (full path). |
| 432 | Note: when assigning to b.name |BufFilePre| and |
| 433 | |BufFilePost| autocommands are launched. |
| 434 | b.number Buffer number. Can be used as |python-buffers| key. |
| 435 | Read-only. |
Bram Moolenaar | 203d04d | 2013-06-06 21:36:40 +0200 | [diff] [blame] | 436 | b.valid True or False. Buffer object becomes invalid when |
Bram Moolenaar | bc41196 | 2013-06-02 17:46:40 +0200 | [diff] [blame] | 437 | corresponding buffer is wiped out. |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 438 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 439 | The buffer object methods are: |
| 440 | b.append(str) Append a line to the buffer |
Bram Moolenaar | 2c3b1d9 | 2010-07-24 16:58:02 +0200 | [diff] [blame] | 441 | b.append(str, nr) Idem, below line "nr" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 442 | b.append(list) Append a list of lines to the buffer |
| 443 | Note that the option of supplying a list of strings to |
| 444 | the append method differs from the equivalent method |
| 445 | for Python's built-in list objects. |
Bram Moolenaar | 2c3b1d9 | 2010-07-24 16:58:02 +0200 | [diff] [blame] | 446 | b.append(list, nr) Idem, below line "nr" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 447 | b.mark(name) Return a tuple (row,col) representing the position |
| 448 | of the named mark (can also get the []"<> marks) |
| 449 | b.range(s,e) Return a range object (see |python-range|) which |
| 450 | represents the part of the given buffer between line |
| 451 | numbers s and e |inclusive|. |
| 452 | |
Bram Moolenaar | 5eb86f9 | 2004-07-26 12:53:41 +0000 | [diff] [blame] | 453 | Note that when adding a line it must not contain a line break character '\n'. |
| 454 | A trailing '\n' is allowed and ignored, so that you can do: > |
| 455 | :py b.append(f.readlines()) |
| 456 | |
Bram Moolenaar | cac867a | 2013-05-21 19:50:34 +0200 | [diff] [blame] | 457 | Buffer object type is available using "Buffer" attribute of vim module. |
| 458 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 459 | Examples (assume b is the current buffer) > |
Bram Moolenaar | 5eb86f9 | 2004-07-26 12:53:41 +0000 | [diff] [blame] | 460 | :py print b.name # write the buffer file name |
| 461 | :py b[0] = "hello!!!" # replace the top line |
| 462 | :py b[:] = None # delete the whole buffer |
| 463 | :py del b[:] # delete the whole buffer |
| 464 | :py b[0:0] = [ "a line" ] # add a line at the top |
| 465 | :py del b[2] # delete a line (the third) |
| 466 | :py b.append("bottom") # add a line at the bottom |
| 467 | :py n = len(b) # number of lines |
| 468 | :py (row,col) = b.mark('a') # named mark |
| 469 | :py r = b.range(1,5) # a sub-range of the buffer |
Bram Moolenaar | 230bb3f | 2013-04-24 14:07:45 +0200 | [diff] [blame] | 470 | :py b.vars["foo"] = "bar" # assign b:foo variable |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 471 | :py b.options["ff"] = "dos" # set fileformat |
| 472 | :py del b.options["ar"] # same as :set autoread< |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 473 | |
| 474 | ============================================================================== |
| 475 | 4. Range objects *python-range* |
| 476 | |
Bram Moolenaar | 402d2fe | 2005-04-15 21:00:38 +0000 | [diff] [blame] | 477 | 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] | 478 | number of ways: |
| 479 | - via vim.current.range (|python-current|) |
| 480 | - from a buffer's range() method (|python-buffer|) |
| 481 | |
Bram Moolenaar | 402d2fe | 2005-04-15 21:00:38 +0000 | [diff] [blame] | 482 | 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] | 483 | all operations are restricted to the lines within the range (this line range |
| 484 | can, of course, change as a result of slice assignments, line deletions, or |
| 485 | the range.append() method). |
| 486 | |
| 487 | The range object attributes are: |
| 488 | r.start Index of first line into the buffer |
| 489 | r.end Index of last line into the buffer |
| 490 | |
| 491 | The range object methods are: |
| 492 | r.append(str) Append a line to the range |
Bram Moolenaar | 2c3b1d9 | 2010-07-24 16:58:02 +0200 | [diff] [blame] | 493 | r.append(str, nr) Idem, after line "nr" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 494 | r.append(list) Append a list of lines to the range |
| 495 | Note that the option of supplying a list of strings to |
| 496 | the append method differs from the equivalent method |
| 497 | for Python's built-in list objects. |
Bram Moolenaar | 2c3b1d9 | 2010-07-24 16:58:02 +0200 | [diff] [blame] | 498 | r.append(list, nr) Idem, after line "nr" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 499 | |
Bram Moolenaar | cac867a | 2013-05-21 19:50:34 +0200 | [diff] [blame] | 500 | Range object type is available using "Range" attribute of vim module. |
| 501 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 502 | Example (assume r is the current range): |
| 503 | # Send all lines in a range to the default printer |
| 504 | vim.command("%d,%dhardcopy!" % (r.start+1,r.end+1)) |
| 505 | |
| 506 | ============================================================================== |
| 507 | 5. Window objects *python-window* |
| 508 | |
Bram Moolenaar | 402d2fe | 2005-04-15 21:00:38 +0000 | [diff] [blame] | 509 | 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] | 510 | - via vim.current.window (|python-current|) |
| 511 | - from indexing vim.windows (|python-windows|) |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 512 | - from indexing "windows" attribute of a tab page (|python-tabpage|) |
| 513 | - from the "window" attribute of a tab page (|python-tabpage|) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 514 | |
Bram Moolenaar | 402d2fe | 2005-04-15 21:00:38 +0000 | [diff] [blame] | 515 | You can manipulate window objects only through their attributes. They have no |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 516 | methods, and no sequence or other interface. |
| 517 | |
| 518 | Window attributes are: |
| 519 | buffer (read-only) The buffer displayed in this window |
| 520 | cursor (read-write) The current cursor position in the window |
| 521 | This is a tuple, (row,col). |
| 522 | height (read-write) The window height, in rows |
| 523 | width (read-write) The window width, in columns |
Bram Moolenaar | 230bb3f | 2013-04-24 14:07:45 +0200 | [diff] [blame] | 524 | vars (read-only) The window |w:| variables. Attribute is |
| 525 | unassignable, but you can change window |
| 526 | variables this way |
Bram Moolenaar | 84e0f6c | 2013-05-06 03:52:55 +0200 | [diff] [blame] | 527 | options (read-only) The window-local options. Attribute is |
| 528 | unassignable, but you can change window |
| 529 | options this way. Provides access only to |
| 530 | window-local options, for buffer-local use |
| 531 | |python-buffer| and for global ones use |
| 532 | |python-options|. If option is |global-local| |
| 533 | and local value is missing getting it will |
| 534 | return None. |
Bram Moolenaar | 6d21645 | 2013-05-12 19:00:41 +0200 | [diff] [blame] | 535 | number (read-only) Window number. The first window has number 1. |
| 536 | This is zero in case it cannot be determined |
| 537 | (e.g. when the window object belongs to other |
| 538 | tab page). |
Bram Moolenaar | cabf80f | 2013-05-17 16:18:33 +0200 | [diff] [blame] | 539 | row, col (read-only) On-screen window position in display cells. |
Bram Moolenaar | 4e5dfb5 | 2013-05-12 19:30:31 +0200 | [diff] [blame] | 540 | First position is zero. |
Bram Moolenaar | cabf80f | 2013-05-17 16:18:33 +0200 | [diff] [blame] | 541 | tabpage (read-only) Window tab page. |
Bram Moolenaar | 203d04d | 2013-06-06 21:36:40 +0200 | [diff] [blame] | 542 | valid (read-write) True or False. Window object becomes invalid |
Bram Moolenaar | bc41196 | 2013-06-02 17:46:40 +0200 | [diff] [blame] | 543 | when corresponding window is closed. |
Bram Moolenaar | 4e5dfb5 | 2013-05-12 19:30:31 +0200 | [diff] [blame] | 544 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 545 | The height attribute is writable only if the screen is split horizontally. |
| 546 | The width attribute is writable only if the screen is split vertically. |
| 547 | |
Bram Moolenaar | cac867a | 2013-05-21 19:50:34 +0200 | [diff] [blame] | 548 | Window object type is available using "Window" attribute of vim module. |
| 549 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 550 | ============================================================================== |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 551 | 6. Tab page objects *python-tabpage* |
| 552 | |
| 553 | Tab page objects represent vim tab pages. You can obtain them in a number of |
| 554 | ways: |
| 555 | - via vim.current.tabpage (|python-current|) |
| 556 | - from indexing vim.tabpages (|python-tabpages|) |
| 557 | |
| 558 | You can use this object to access tab page windows. They have no methods and |
| 559 | no sequence or other interfaces. |
| 560 | |
| 561 | Tab page attributes are: |
| 562 | number The tab page number like the one returned by |
| 563 | |tabpagenr()|. |
| 564 | windows Like |python-windows|, but for current tab page. |
| 565 | vars The tab page |t:| variables. |
| 566 | window Current tabpage window. |
Bram Moolenaar | 203d04d | 2013-06-06 21:36:40 +0200 | [diff] [blame] | 567 | valid True or False. Tab page object becomes invalid when |
Bram Moolenaar | bc41196 | 2013-06-02 17:46:40 +0200 | [diff] [blame] | 568 | corresponding tab page is closed. |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 569 | |
Bram Moolenaar | cac867a | 2013-05-21 19:50:34 +0200 | [diff] [blame] | 570 | TabPage object type is available using "TabPage" attribute of vim module. |
| 571 | |
Bram Moolenaar | 5e538ec | 2013-05-15 15:12:29 +0200 | [diff] [blame] | 572 | ============================================================================== |
Bram Moolenaar | a9922d6 | 2013-05-30 13:01:18 +0200 | [diff] [blame] | 573 | 7. vim.bindeval objects *python-bindeval-objects* |
| 574 | |
| 575 | vim.Dictionary object *python-Dictionary* |
| 576 | Dictionary-like object providing access to vim |Dictionary| type. |
| 577 | Attributes: |
| 578 | Attribute Description ~ |
| 579 | locked One of *python-.locked* |
| 580 | Value Description ~ |
| 581 | zero Variable is not locked |
| 582 | vim.VAR_LOCKED Variable is locked, but can be unlocked |
| 583 | vim.VAR_FIXED Variable is locked and can't be unlocked |
| 584 | Read-write. You can unlock locked variable by assigning |
| 585 | `True` or `False` to this attribute. No recursive locking |
| 586 | is supported. |
| 587 | scope One of |
| 588 | Value Description ~ |
| 589 | zero Dictionary is not a scope one |
| 590 | vim.VAR_DEF_SCOPE |g:| or |l:| dictionary |
| 591 | vim.VAR_SCOPE Other scope dictionary, |
| 592 | see |internal-variables| |
Bram Moolenaar | 305b2fd | 2013-05-30 13:32:30 +0200 | [diff] [blame] | 593 | Methods (note: methods do not support keyword arguments): |
Bram Moolenaar | a9922d6 | 2013-05-30 13:01:18 +0200 | [diff] [blame] | 594 | Method Description ~ |
| 595 | keys() Returns a list with dictionary keys. |
| 596 | values() Returns a list with dictionary values. |
| 597 | items() Returns a list of 2-tuples with dictionary contents. |
Bram Moolenaar | 305b2fd | 2013-05-30 13:32:30 +0200 | [diff] [blame] | 598 | update(iterable), update(dictionary), update(**kwargs) |
Bram Moolenaar | a9922d6 | 2013-05-30 13:01:18 +0200 | [diff] [blame] | 599 | Adds keys to dictionary. |
Bram Moolenaar | 305b2fd | 2013-05-30 13:32:30 +0200 | [diff] [blame] | 600 | get(key[, default=None]) |
| 601 | Obtain key from dictionary, returning the default if it is |
| 602 | not present. |
| 603 | pop(key[, default]) |
| 604 | Remove specified key from dictionary and return |
| 605 | corresponding value. If key is not found and default is |
| 606 | given returns the default, otherwise raises KeyError. |
Bram Moolenaar | de71b56 | 2013-06-02 17:41:54 +0200 | [diff] [blame] | 607 | popitem() |
| 608 | Remove random key from dictionary and return (key, value) |
| 609 | pair. |
Bram Moolenaar | 305b2fd | 2013-05-30 13:32:30 +0200 | [diff] [blame] | 610 | has_key(key) |
| 611 | Check whether dictionary contains specified key, similar |
| 612 | to `key in dict`. |
| 613 | |
| 614 | __new__(), __new__(iterable), __new__(dictionary), __new__(update) |
| 615 | You can use `vim.Dictionary()` to create new vim |
| 616 | dictionaries. `d=vim.Dictionary(arg)` is the same as |
| 617 | `d=vim.bindeval('{}');d.update(arg)`. Without arguments |
| 618 | constructs empty dictionary. |
| 619 | |
Bram Moolenaar | a9922d6 | 2013-05-30 13:01:18 +0200 | [diff] [blame] | 620 | Examples: > |
Bram Moolenaar | 305b2fd | 2013-05-30 13:32:30 +0200 | [diff] [blame] | 621 | d = vim.Dictionary(food="bar") # Constructor |
Bram Moolenaar | a9922d6 | 2013-05-30 13:01:18 +0200 | [diff] [blame] | 622 | d['a'] = 'b' # Item assignment |
| 623 | print d['a'] # getting item |
| 624 | d.update({'c': 'd'}) # .update(dictionary) |
| 625 | d.update(e='f') # .update(**kwargs) |
| 626 | d.update((('g', 'h'), ('i', 'j'))) # .update(iterable) |
| 627 | for key in d.keys(): # .keys() |
| 628 | for val in d.values(): # .values() |
| 629 | for key, val in d.items(): # .items() |
| 630 | print isinstance(d, vim.Dictionary) # True |
| 631 | for key in d: # Iteration over keys |
Bram Moolenaar | 305b2fd | 2013-05-30 13:32:30 +0200 | [diff] [blame] | 632 | class Dict(vim.Dictionary): # Subclassing |
Bram Moolenaar | a9922d6 | 2013-05-30 13:01:18 +0200 | [diff] [blame] | 633 | < |
| 634 | Note: when iterating over keys you should not modify dictionary. |
| 635 | |
| 636 | vim.List object *python-List* |
| 637 | Sequence-like object providing access to vim |List| type. |
| 638 | Supports `.locked` attribute, see |python-.locked|. Also supports the |
| 639 | following methods: |
| 640 | Method Description ~ |
| 641 | extend(item) Add items to the list. |
Bram Moolenaar | 305b2fd | 2013-05-30 13:32:30 +0200 | [diff] [blame] | 642 | |
| 643 | __new__(), __new__(iterable) |
| 644 | You can use `vim.List()` to create new vim lists. |
| 645 | `l=vim.List(iterable)` is the same as |
| 646 | `l=vim.bindeval('[]');l.extend(iterable)`. Without |
| 647 | arguments constructs empty list. |
Bram Moolenaar | a9922d6 | 2013-05-30 13:01:18 +0200 | [diff] [blame] | 648 | Examples: > |
Bram Moolenaar | 305b2fd | 2013-05-30 13:32:30 +0200 | [diff] [blame] | 649 | l = vim.List("abc") # Constructor, result: ['a', 'b', 'c'] |
Bram Moolenaar | a9922d6 | 2013-05-30 13:01:18 +0200 | [diff] [blame] | 650 | l.extend(['abc', 'def']) # .extend() method |
| 651 | print l[1:] # slicing |
| 652 | l[:0] = ['ghi', 'jkl'] # slice assignment |
| 653 | print l[0] # getting item |
| 654 | l[0] = 'mno' # assignment |
| 655 | for i in l: # iteration |
| 656 | print isinstance(l, vim.List) # True |
Bram Moolenaar | 305b2fd | 2013-05-30 13:32:30 +0200 | [diff] [blame] | 657 | class List(vim.List): # Subclassing |
Bram Moolenaar | a9922d6 | 2013-05-30 13:01:18 +0200 | [diff] [blame] | 658 | |
| 659 | vim.Function object *python-Function* |
Bram Moolenaar | 8110a09 | 2016-04-14 15:56:09 +0200 | [diff] [blame] | 660 | Function-like object, acting like vim |Funcref| object. Accepts special |
| 661 | keyword argument `self`, see |Dictionary-function|. You can also use |
| 662 | `vim.Function(name)` constructor, it is the same as |
| 663 | `vim.bindeval('function(%s)'%json.dumps(name))`. |
| 664 | |
| 665 | Attributes (read-only): |
Bram Moolenaar | 2177f9f | 2016-05-25 20:39:09 +0200 | [diff] [blame] | 666 | Attribute Description ~ |
| 667 | name Function name. |
| 668 | args `None` or a |python-List| object with arguments. Note |
| 669 | that this is a copy of the arguments list, constructed |
| 670 | each time you request this attribute. Modifications made |
| 671 | to the list will be ignored (but not to the containers |
| 672 | inside argument list: this is like |copy()| and not |
| 673 | |deepcopy()|). |
| 674 | self `None` or a |python-Dictionary| object with self |
| 675 | dictionary. Note that explicit `self` keyword used when |
| 676 | calling resulting object overrides this attribute. |
| 677 | auto_rebind Boolean. True if partial created from this Python object |
| 678 | and stored in the VimL dictionary should be automatically |
| 679 | rebound to the dictionary it is stored in when this |
| 680 | dictionary is indexed. Exposes Vim internal difference |
| 681 | between `dict.func` (auto_rebind=True) and |
| 682 | `function(dict.func,dict)` (auto_rebind=False). This |
| 683 | attribute makes no sense if `self` attribute is `None`. |
Bram Moolenaar | 8110a09 | 2016-04-14 15:56:09 +0200 | [diff] [blame] | 684 | |
Bram Moolenaar | 2177f9f | 2016-05-25 20:39:09 +0200 | [diff] [blame] | 685 | Constructor additionally accepts `args`, `self` and `auto_rebind` |
| 686 | keywords. If `args` and/or `self` argument is given then it constructs |
| 687 | a partial, see |function()|. `auto_rebind` is only used when `self` |
| 688 | argument is given, otherwise it is assumed to be `True` regardless of |
| 689 | whether it was given or not. If `self` is given then it defaults to |
| 690 | `False`. |
Bram Moolenaar | 305b2fd | 2013-05-30 13:32:30 +0200 | [diff] [blame] | 691 | |
Bram Moolenaar | a9922d6 | 2013-05-30 13:01:18 +0200 | [diff] [blame] | 692 | Examples: > |
Bram Moolenaar | 305b2fd | 2013-05-30 13:32:30 +0200 | [diff] [blame] | 693 | f = vim.Function('tr') # Constructor |
Bram Moolenaar | a9922d6 | 2013-05-30 13:01:18 +0200 | [diff] [blame] | 694 | print f('abc', 'a', 'b') # Calls tr('abc', 'a', 'b') |
| 695 | vim.command(''' |
| 696 | function DictFun() dict |
| 697 | return self |
| 698 | endfunction |
| 699 | ''') |
| 700 | f = vim.bindeval('function("DictFun")') |
| 701 | print f(self={}) # Like call('DictFun', [], {}) |
| 702 | print isinstance(f, vim.Function) # True |
| 703 | |
Bram Moolenaar | 8110a09 | 2016-04-14 15:56:09 +0200 | [diff] [blame] | 704 | p = vim.Function('DictFun', self={}) |
| 705 | print f() |
| 706 | p = vim.Function('tr', args=['abc', 'a']) |
| 707 | print f('b') |
| 708 | |
Bram Moolenaar | a9922d6 | 2013-05-30 13:01:18 +0200 | [diff] [blame] | 709 | ============================================================================== |
| 710 | 8. pyeval() and py3eval() Vim functions *python-pyeval* |
Bram Moolenaar | 30b6581 | 2012-07-12 22:01:11 +0200 | [diff] [blame] | 711 | |
| 712 | To facilitate bi-directional interface, you can use |pyeval()| and |py3eval()| |
| 713 | functions to evaluate Python expressions and pass their values to VimL. |
| 714 | |
| 715 | ============================================================================== |
Bram Moolenaar | a9922d6 | 2013-05-30 13:01:18 +0200 | [diff] [blame] | 716 | 9. Dynamic loading *python-dynamic* |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 717 | |
Bram Moolenaar | d94464e | 2015-11-02 15:28:18 +0100 | [diff] [blame] | 718 | On MS-Windows and Unix the Python library can be loaded dynamically. The |
| 719 | |:version| output then includes |+python/dyn| or |+python3/dyn|. |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 720 | |
Bram Moolenaar | d94464e | 2015-11-02 15:28:18 +0100 | [diff] [blame] | 721 | This means that Vim will search for the Python DLL or shared library file only |
| 722 | when needed. When you don't use the Python interface you don't need it, thus |
| 723 | you can use Vim without this file. |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 724 | |
Bram Moolenaar | e18c0b3 | 2016-03-20 21:08:34 +0100 | [diff] [blame] | 725 | |
| 726 | MS-Windows ~ |
| 727 | |
| 728 | To use the Python interface the Python DLL must be in your search path. In a |
| 729 | console window type "path" to see what directories are used. The 'pythondll' |
| 730 | or 'pythonthreedll' option can be also used to specify the Python DLL. |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 731 | |
| 732 | The name of the DLL must match the Python version Vim was compiled with. |
| 733 | Currently the name is "python24.dll". That is for Python 2.4. To know for |
| 734 | sure edit "gvim.exe" and search for "python\d*.dll\c". |
| 735 | |
Bram Moolenaar | e18c0b3 | 2016-03-20 21:08:34 +0100 | [diff] [blame] | 736 | |
| 737 | Unix ~ |
| 738 | |
| 739 | The 'pythondll' or 'pythonthreedll' option can be used to specify the Python |
| 740 | shared library file instead of DYNAMIC_PYTHON_DLL or DYNAMIC_PYTHON3_DLL file |
| 741 | what were specified at compile time. The version of the shared library must |
| 742 | match the Python 2.x or Python 3 version Vim was compiled with. |
Bram Moolenaar | d94464e | 2015-11-02 15:28:18 +0100 | [diff] [blame] | 743 | |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 744 | ============================================================================== |
Bram Moolenaar | a9922d6 | 2013-05-30 13:01:18 +0200 | [diff] [blame] | 745 | 10. Python 3 *python3* |
Bram Moolenaar | 6df6f47 | 2010-07-18 18:04:50 +0200 | [diff] [blame] | 746 | |
Bram Moolenaar | bfc8b97 | 2010-08-13 22:05:54 +0200 | [diff] [blame] | 747 | *:py3* *:python3* |
Bram Moolenaar | d620aa9 | 2013-05-17 16:40:06 +0200 | [diff] [blame] | 748 | The `:py3` and `:python3` commands work similar to `:python`. A simple check |
Bram Moolenaar | fa13eef | 2013-02-06 17:34:04 +0100 | [diff] [blame] | 749 | if the `:py3` command is working: > |
Bram Moolenaar | 9b45125 | 2012-08-15 17:43:31 +0200 | [diff] [blame] | 750 | :py3 print("Hello") |
Bram Moolenaar | 50ba526 | 2016-09-22 22:33:02 +0200 | [diff] [blame] | 751 | |
Bram Moolenaar | 64d8e25 | 2016-09-06 22:12:34 +0200 | [diff] [blame] | 752 | To see what version of Python you have: > |
| 753 | :py3 import sys |
| 754 | :py3 print(sys.version) |
Bram Moolenaar | 50ba526 | 2016-09-22 22:33:02 +0200 | [diff] [blame] | 755 | < *:py3file* |
Bram Moolenaar | d620aa9 | 2013-05-17 16:40:06 +0200 | [diff] [blame] | 756 | The `:py3file` command works similar to `:pyfile`. |
Bram Moolenaar | aa3b15d | 2016-04-21 08:53:19 +0200 | [diff] [blame] | 757 | *:py3do* |
Bram Moolenaar | d620aa9 | 2013-05-17 16:40:06 +0200 | [diff] [blame] | 758 | The `:py3do` command works similar to `:pydo`. |
Bram Moolenaar | 3dab280 | 2013-05-15 18:28:13 +0200 | [diff] [blame] | 759 | |
Bram Moolenaar | 30b6581 | 2012-07-12 22:01:11 +0200 | [diff] [blame] | 760 | |
Bram Moolenaar | 8d9b40e | 2010-07-25 15:49:07 +0200 | [diff] [blame] | 761 | Vim can be built in four ways (:version output): |
Bram Moolenaar | bfc8b97 | 2010-08-13 22:05:54 +0200 | [diff] [blame] | 762 | 1. No Python support (-python, -python3) |
Bram Moolenaar | 8d9b40e | 2010-07-25 15:49:07 +0200 | [diff] [blame] | 763 | 2. Python 2 support only (+python or +python/dyn, -python3) |
| 764 | 3. Python 3 support only (-python, +python3 or +python3/dyn) |
| 765 | 4. Python 2 and 3 support (+python/dyn, +python3/dyn) |
Bram Moolenaar | 6df6f47 | 2010-07-18 18:04:50 +0200 | [diff] [blame] | 766 | |
Bram Moolenaar | 9ba7e17 | 2013-07-17 22:37:26 +0200 | [diff] [blame] | 767 | Some more details on the special case 4: *python-2-and-3* |
Bram Moolenaar | ede981a | 2010-08-11 23:37:32 +0200 | [diff] [blame] | 768 | |
Bram Moolenaar | bfc8b97 | 2010-08-13 22:05:54 +0200 | [diff] [blame] | 769 | When Python 2 and Python 3 are both supported they must be loaded dynamically. |
| 770 | |
| 771 | When doing this on Linux/Unix systems and importing global symbols, this leads |
| 772 | to a crash when the second Python version is used. So either global symbols |
| 773 | 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] | 774 | 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] | 775 | symbols to be provided by Vim. |
| 776 | *E836* *E837* |
| 777 | Vim's configuration script makes a guess for all libraries based on one |
| 778 | standard Python library (termios). If importing this library succeeds for |
| 779 | both Python versions, then both will be made available in Vim at the same |
| 780 | time. If not, only the version first used in a session will be enabled. |
| 781 | When trying to use the other one you will get the E836 or E837 error message. |
| 782 | |
| 783 | Here Vim's behavior depends on the system in which it was configured. In a |
| 784 | system where both versions of Python were configured with --enable-shared, |
| 785 | both versions of Python will be activated at the same time. There will still |
| 786 | be problems with other third party libraries that were not linked to |
| 787 | libPython. |
| 788 | |
| 789 | To work around such problems there are these options: |
| 790 | 1. The problematic library is recompiled to link to the according |
| 791 | libpython.so. |
| 792 | 2. Vim is recompiled for only one Python version. |
| 793 | 3. You undefine PY_NO_RTLD_GLOBAL in auto/config.h after configuration. This |
| 794 | may crash Vim though. |
| 795 | |
Bram Moolenaar | 4100937 | 2013-07-01 22:03:04 +0200 | [diff] [blame] | 796 | *E880* |
| 797 | Raising SystemExit exception in python isn't endorsed way to quit vim, use: > |
| 798 | :py vim.command("qall!") |
| 799 | < |
| 800 | |
Bram Moolenaar | 446beb4 | 2011-05-10 17:18:44 +0200 | [diff] [blame] | 801 | *has-python* |
| 802 | You can test what Python version is available with: > |
| 803 | if has('python') |
Bram Moolenaar | 5302d9e | 2011-09-14 17:55:08 +0200 | [diff] [blame] | 804 | echo 'there is Python 2.x' |
Bram Moolenaar | 446beb4 | 2011-05-10 17:18:44 +0200 | [diff] [blame] | 805 | elseif has('python3') |
| 806 | echo 'there is Python 3.x' |
| 807 | endif |
| 808 | |
| 809 | Note however, that when Python 2 and 3 are both available and loaded |
| 810 | dynamically, these has() calls will try to load them. If only one can be |
| 811 | loaded at a time, just checking if Python 2 or 3 are available will prevent |
| 812 | the other one from being available. |
Bram Moolenaar | 6df6f47 | 2010-07-18 18:04:50 +0200 | [diff] [blame] | 813 | |
| 814 | ============================================================================== |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 815 | vim:tw=78:ts=8:ft=help:norl: |