if_pyth.txt 39 KB

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