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