| 
									
										
										
										
											2013-05-21 21:01:10 +02:00
										 |  |  | *if_pyth.txt*   For Vim version 7.3.  Last change: 2013 May 21 | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		  VIM REFERENCE MANUAL    by Paul Moore | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The Python Interface to Vim				*python* *Python* | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-12 22:01:11 +02:00
										 |  |  | 1. Commands					|python-commands| | 
					
						
							|  |  |  | 2. The vim module				|python-vim| | 
					
						
							|  |  |  | 3. Buffer objects				|python-buffer| | 
					
						
							|  |  |  | 4. Range objects				|python-range| | 
					
						
							|  |  |  | 5. Window objects				|python-window| | 
					
						
							| 
									
										
										
										
											2013-05-21 19:50:34 +02:00
										 |  |  | 6. Tab page objects				|python-tabpage| | 
					
						
							|  |  |  | 7. pyeval(), py3eval() Vim functions		|python-pyeval| | 
					
						
							|  |  |  | 8. Dynamic loading				|python-dynamic| | 
					
						
							|  |  |  | 9. Python 3					|python3| | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | {Vi does not have any of these commands} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-19 20:46:22 +02:00
										 |  |  | The Python 2.x interface is available only when Vim was compiled with the | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | |+python| feature. | 
					
						
							| 
									
										
										
										
											2010-07-19 20:46:22 +02:00
										 |  |  | The Python 3 interface is available only when Vim was compiled with the | 
					
						
							|  |  |  | |+python3| feature. | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | ============================================================================== | 
					
						
							|  |  |  | 1. Commands						*python-commands* | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					*:python* *:py* *E205* *E263* *E264* | 
					
						
							|  |  |  | :[range]py[thon] {stmt} | 
					
						
							| 
									
										
										
										
											2012-08-15 17:43:31 +02:00
										 |  |  | 			Execute Python statement {stmt}.  A simple check if | 
					
						
							|  |  |  | 			the `:python` command is working: > | 
					
						
							|  |  |  | 				:python print "Hello" | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | :[range]py[thon] << {endmarker} | 
					
						
							|  |  |  | {script} | 
					
						
							|  |  |  | {endmarker} | 
					
						
							|  |  |  | 			Execute Python script {script}. | 
					
						
							|  |  |  | 			Note: This command doesn't work when the Python | 
					
						
							|  |  |  | 			feature wasn't compiled in.  To avoid errors, see | 
					
						
							|  |  |  | 			|script-here|. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {endmarker} must NOT be preceded by any white space.  If {endmarker} is | 
					
						
							|  |  |  | omitted from after the "<<", a dot '.' must be used after {script}, like | 
					
						
							|  |  |  | for the |:append| and |:insert| commands. | 
					
						
							|  |  |  | This form of the |:python| command is mainly useful for including python code | 
					
						
							|  |  |  | in Vim scripts. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Example: > | 
					
						
							|  |  |  | 	function! IcecreamInitialize() | 
					
						
							|  |  |  | 	python << EOF | 
					
						
							|  |  |  | 	class StrawberryIcecream: | 
					
						
							|  |  |  | 		def __call__(self): | 
					
						
							|  |  |  | 			print 'EAT ME' | 
					
						
							|  |  |  | 	EOF | 
					
						
							|  |  |  | 	endfunction | 
					
						
							|  |  |  | < | 
					
						
							| 
									
										
										
										
											2013-01-30 14:18:00 +01:00
										 |  |  | Note: Python is very sensitive to the indenting.  Make sure the "class" line | 
					
						
							|  |  |  | and "EOF" do not have any indent. | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-17 16:40:06 +02:00
										 |  |  | 							*:pydo* | 
					
						
							|  |  |  | :[range]pydo {body}	Execute Python function "def _vim_pydo(line, linenr): | 
					
						
							|  |  |  | 			{body}" for each line in the [range], with the | 
					
						
							|  |  |  | 			function arguments being set to the text of each line | 
					
						
							|  |  |  | 			in turn, without a trailing <EOL>, and the current | 
					
						
							|  |  |  | 			line number. The function should return a string or | 
					
						
							|  |  |  | 			None. If a string is returned, it becomes the text of | 
					
						
							|  |  |  | 			the line in the current turn. The default for [range] | 
					
						
							|  |  |  | 			is the whole file: "1,$". | 
					
						
							|  |  |  | 			{not in Vi} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Examples: | 
					
						
							|  |  |  | > | 
					
						
							|  |  |  | 	:pydo return "%s\t%d" % (line[::-1], len(line)) | 
					
						
							|  |  |  | 	:pydo if line: return "%4d: %s" % (linenr, line) | 
					
						
							|  |  |  | < | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 							*:pyfile* *:pyf* | 
					
						
							|  |  |  | :[range]pyf[ile] {file} | 
					
						
							|  |  |  | 			Execute the Python script in {file}.  The whole | 
					
						
							|  |  |  | 			argument is used as a single file name.  {not in Vi} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Both of these commands do essentially the same thing - they execute a piece of | 
					
						
							|  |  |  | Python code, with the "current range" |python-range| set to the given line | 
					
						
							|  |  |  | range. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | In the case of :python, the code to execute is in the command-line. | 
					
						
							|  |  |  | In the case of :pyfile, the code to execute is the contents of the given file. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Python commands cannot be used in the |sandbox|. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | To pass arguments you need to set sys.argv[] explicitly.  Example: > | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	:python import sys | 
					
						
							|  |  |  | 	:python sys.argv = ["foo", "bar"] | 
					
						
							|  |  |  | 	:pyfile myscript.py | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Here are some examples					*python-examples*  > | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	:python from vim import * | 
					
						
							|  |  |  | 	:python from string import upper | 
					
						
							|  |  |  | 	:python current.line = upper(current.line) | 
					
						
							|  |  |  | 	:python print "Hello" | 
					
						
							|  |  |  | 	:python str = current.buffer[42] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | (Note that changes - like the imports - persist from one command to the next, | 
					
						
							|  |  |  | just like in the Python interpreter.) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ============================================================================== | 
					
						
							|  |  |  | 2. The vim module					*python-vim* | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Python code gets all of its access to vim (with one exception - see | 
					
						
							| 
									
										
										
										
											2005-04-15 21:00:38 +00:00
										 |  |  | |python-output| below) via the "vim" module.  The vim module implements two | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | methods, three constants, and one error object.  You need to import the vim | 
					
						
							|  |  |  | module before using it: > | 
					
						
							|  |  |  | 	:python import vim | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Overview > | 
					
						
							| 
									
										
										
										
											2004-07-26 12:53:41 +00:00
										 |  |  | 	:py print "Hello"		# displays a message | 
					
						
							| 
									
										
										
										
											2010-01-06 20:52:26 +01:00
										 |  |  | 	:py vim.command(cmd)		# execute an Ex command | 
					
						
							| 
									
										
										
										
											2004-07-26 12:53:41 +00:00
										 |  |  | 	:py w = vim.windows[n]		# gets window "n" | 
					
						
							|  |  |  | 	:py cw = vim.current.window	# gets the current window | 
					
						
							|  |  |  | 	:py b = vim.buffers[n]		# gets buffer "n" | 
					
						
							|  |  |  | 	:py cb = vim.current.buffer	# gets the current buffer | 
					
						
							|  |  |  | 	:py w.height = lines		# sets the window height | 
					
						
							|  |  |  | 	:py w.cursor = (row, col)	# sets the window cursor position | 
					
						
							|  |  |  | 	:py pos = w.cursor		# gets a tuple (row, col) | 
					
						
							|  |  |  | 	:py name = b.name		# gets the buffer file name | 
					
						
							|  |  |  | 	:py line = b[n]			# gets a line from the buffer | 
					
						
							|  |  |  | 	:py lines = b[n:m]		# gets a list of lines | 
					
						
							|  |  |  | 	:py num = len(b)		# gets the number of lines | 
					
						
							|  |  |  | 	:py b[n] = str			# sets a line in the buffer | 
					
						
							|  |  |  | 	:py b[n:m] = [str1, str2, str3]	# sets a number of lines at once | 
					
						
							|  |  |  | 	:py del b[n]			# deletes a line | 
					
						
							|  |  |  | 	:py del b[n:m]			# deletes a number of lines | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Methods of the "vim" module | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | vim.command(str)					*python-command* | 
					
						
							| 
									
										
										
										
											2005-04-15 21:00:38 +00:00
										 |  |  | 	Executes the vim (ex-mode) command str.  Returns None. | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 	Examples: > | 
					
						
							| 
									
										
										
										
											2004-07-26 12:53:41 +00:00
										 |  |  | 	    :py vim.command("set tw=72") | 
					
						
							|  |  |  | 	    :py vim.command("%s/aaa/bbb/g") | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | <	The following definition executes Normal mode commands: > | 
					
						
							|  |  |  | 		def normal(str): | 
					
						
							|  |  |  | 			vim.command("normal "+str) | 
					
						
							|  |  |  | 		# Note the use of single quotes to delimit a string containing | 
					
						
							|  |  |  | 		# double quotes | 
					
						
							|  |  |  | 		normal('"a2dd"aP') | 
					
						
							|  |  |  | <								*E659* | 
					
						
							|  |  |  | 	The ":python" command cannot be used recursively with Python 2.2 and | 
					
						
							|  |  |  | 	older.  This only works with Python 2.3 and later: > | 
					
						
							| 
									
										
										
										
											2004-07-26 12:53:41 +00:00
										 |  |  | 	    :py vim.command("python print 'Hello again Python'") | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | vim.eval(str)						*python-eval* | 
					
						
							|  |  |  | 	Evaluates the expression str using the vim internal expression | 
					
						
							| 
									
										
										
										
											2006-01-20 23:02:51 +00:00
										 |  |  | 	evaluator (see |expression|).  Returns the expression result as: | 
					
						
							|  |  |  | 	- a string if the Vim expression evaluates to a string or number | 
					
						
							|  |  |  | 	- a list if the Vim expression evaluates to a Vim list | 
					
						
							| 
									
										
										
										
											2006-04-30 18:54:39 +00:00
										 |  |  | 	- a dictionary if the Vim expression evaluates to a Vim dictionary | 
					
						
							| 
									
										
										
										
											2006-01-20 23:02:51 +00:00
										 |  |  | 	Dictionaries and lists are recursively expanded. | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 	Examples: > | 
					
						
							| 
									
										
										
										
											2004-07-26 12:53:41 +00:00
										 |  |  | 	    :py text_width = vim.eval("&tw") | 
					
						
							|  |  |  | 	    :py str = vim.eval("12+12")		# NB result is a string! Use | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 						# string.atoi() to convert to | 
					
						
							|  |  |  | 						# a number. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-30 18:54:39 +00:00
										 |  |  | 	    :py tagList = vim.eval('taglist("eval_expr")') | 
					
						
							| 
									
										
										
										
											2006-01-20 23:02:51 +00:00
										 |  |  | <	The latter will return a python list of python dicts, for instance: | 
					
						
							|  |  |  | 	[{'cmd': '/^eval_expr(arg, nextcmd)$/', 'static': 0, 'name': | 
					
						
							|  |  |  | 	'eval_expr', 'kind': 'f', 'filename': './src/eval.c'}] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-12 22:01:11 +02:00
										 |  |  | vim.bindeval(str)					*python-bindeval* | 
					
						
							|  |  |  | 	Like |python-eval|, but | 
					
						
							|  |  |  | 	1. if expression evaluates to |List| or |Dictionary| it is returned as  | 
					
						
							|  |  |  | 	   vimlist or vimdictionary python type that are connected to original  | 
					
						
							|  |  |  | 	   list or dictionary. Thus modifications to these objects imply  | 
					
						
							|  |  |  | 	   modifications of the original. | 
					
						
							| 
									
										
										
										
											2012-09-21 14:54:30 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-21 19:50:34 +02:00
										 |  |  | 	   Additionally, vim.List and vim.Dictionary type have read-write  | 
					
						
							| 
									
										
										
										
											2012-09-21 14:54:30 +02:00
										 |  |  | 	   `.locked` attribute that returns | 
					
						
							|  |  |  | 	     Value           Meaning ~ | 
					
						
							|  |  |  | 	     zero            Variable is not locked | 
					
						
							|  |  |  | 	     vim.VAR_LOCKED  Variable is locked, but can be unlocked | 
					
						
							| 
									
										
										
										
											2012-10-03 21:46:54 +02:00
										 |  |  | 	     vim.VAR_FIXED   Variable is locked and can't be unlocked | 
					
						
							| 
									
										
										
										
											2012-09-21 14:54:30 +02:00
										 |  |  | 	   integer constants. If variable is not fixed, you can do  | 
					
						
							|  |  |  | 	   `var.locked=True` to lock it and `var.locked=False` to unlock.  | 
					
						
							|  |  |  | 	   There is no recursive locking like |:lockvar|! does. There is also  | 
					
						
							|  |  |  | 	   no way to lock a specific key or check whether it is locked (in any  | 
					
						
							|  |  |  | 	   case these locks are ignored by anything except |:let|: |extend()|  | 
					
						
							|  |  |  | 	   does not care, neither does python interface). | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-21 19:50:34 +02:00
										 |  |  | 	   vim.Dictionary type also supports `.scope` attribute which is one  | 
					
						
							|  |  |  | 	   of | 
					
						
							| 
									
										
										
										
											2012-09-21 14:54:30 +02:00
										 |  |  | 	     Value              Meaning ~ | 
					
						
							|  |  |  | 	     zero               Dictionary is not a scope one | 
					
						
							|  |  |  | 	     vim.VAR_DEF_SCOPE  Function-local or global scope dictionary | 
					
						
							|  |  |  | 	     vim.VAR_SCOPE      Other scope dictionary | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-12 22:01:11 +02:00
										 |  |  | 	2. if expression evaluates to a function reference, then it returns  | 
					
						
							| 
									
										
										
										
											2013-05-21 19:50:34 +02:00
										 |  |  | 	   callable vim.Function object. Use self keyword argument to assign  | 
					
						
							| 
									
										
										
										
											2012-07-12 22:01:11 +02:00
										 |  |  | 	   |self| object for dictionary functions. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Note: this function has the same behavior as |lua-eval| (except that  | 
					
						
							|  |  |  | 	      lua does not support running vim functions), |python-eval| is  | 
					
						
							|  |  |  | 	      kept for backwards compatibility in order not to make scripts  | 
					
						
							|  |  |  | 	      relying on outputs of vim.eval() being a copy of original or  | 
					
						
							|  |  |  | 	      vim.eval("1") returning a string. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-21 19:50:34 +02:00
										 |  |  | 	You can use "List", "Dictionary" and "Function" vim module attributes  | 
					
						
							|  |  |  | 	to test whether object has given type. These types are currently not  | 
					
						
							|  |  |  | 	subclassable, neither they contain constructors, so you can use them  | 
					
						
							|  |  |  | 	only for checks like `isinstance(obj, vim.List)`. | 
					
						
							| 
									
										
										
										
											2006-01-20 23:02:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | Error object of the "vim" module | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | vim.error						*python-error* | 
					
						
							|  |  |  | 	Upon encountering a Vim error, Python raises an exception of type | 
					
						
							|  |  |  | 	vim.error. | 
					
						
							|  |  |  | 	Example: > | 
					
						
							|  |  |  | 		try: | 
					
						
							|  |  |  | 			vim.command("put a") | 
					
						
							|  |  |  | 		except vim.error: | 
					
						
							|  |  |  | 			# nothing in register a | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Constants of the "vim" module | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Note that these are not actually constants - you could reassign them. | 
					
						
							|  |  |  | 	But this is silly, as you would then lose access to the vim objects | 
					
						
							|  |  |  | 	to which the variables referred. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | vim.buffers						*python-buffers* | 
					
						
							| 
									
										
										
										
											2013-05-15 13:38:47 +02:00
										 |  |  | 	A mapping object providing access to the list of vim buffers.  The | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 	object supports the following operations: > | 
					
						
							| 
									
										
										
										
											2004-07-26 12:53:41 +00:00
										 |  |  | 	    :py b = vim.buffers[i]	# Indexing (read-only) | 
					
						
							|  |  |  | 	    :py b in vim.buffers	# Membership test | 
					
						
							|  |  |  | 	    :py n = len(vim.buffers)	# Number of elements | 
					
						
							| 
									
										
										
										
											2013-05-15 14:39:52 +02:00
										 |  |  | 	    :py for b in vim.buffers:	# Iterating over buffer list | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | < | 
					
						
							|  |  |  | vim.windows						*python-windows* | 
					
						
							| 
									
										
										
										
											2005-04-15 21:00:38 +00:00
										 |  |  | 	A sequence object providing access to the list of vim windows.  The | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 	object supports the following operations: > | 
					
						
							| 
									
										
										
										
											2004-07-26 12:53:41 +00:00
										 |  |  | 	    :py w = vim.windows[i]	# Indexing (read-only) | 
					
						
							|  |  |  | 	    :py w in vim.windows	# Membership test | 
					
						
							|  |  |  | 	    :py n = len(vim.windows)	# Number of elements | 
					
						
							|  |  |  | 	    :py for w in vim.windows:	# Sequential access | 
					
						
							| 
									
										
										
										
											2013-05-15 15:12:29 +02:00
										 |  |  | <	Note: vim.windows object always accesses current tab page,.  | 
					
						
							|  |  |  | 	|python-tabpage|.windows objects are bound to parent |python-tabpage|  | 
					
						
							|  |  |  | 	object and always use windows from that tab page (or throw vim.error  | 
					
						
							|  |  |  | 	in case tab page was deleted). You can keep a reference to both  | 
					
						
							|  |  |  | 	without keeping a reference to vim module object or |python-tabpage|,  | 
					
						
							|  |  |  | 	they will not loose their properties in this case. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | vim.tabpages						*python-tabpages* | 
					
						
							|  |  |  | 	A sequence object providing access to the list of vim tab pages. The  | 
					
						
							|  |  |  | 	object supports the following operations: > | 
					
						
							|  |  |  | 	    :py t = vim.tabpages[i]	# Indexing (read-only) | 
					
						
							|  |  |  | 	    :py t in vim.tabpages	# Membership test | 
					
						
							|  |  |  | 	    :py n = len(vim.tabpages)	# Number of elements | 
					
						
							|  |  |  | 	    :py for t in vim.tabpages:	# Sequential access | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | < | 
					
						
							|  |  |  | vim.current						*python-current* | 
					
						
							|  |  |  | 	An object providing access (via specific attributes) to various | 
					
						
							|  |  |  | 	"current" objects available in vim: | 
					
						
							|  |  |  | 		vim.current.line	The current line (RW)		String | 
					
						
							| 
									
										
										
										
											2013-05-15 15:51:08 +02:00
										 |  |  | 		vim.current.buffer	The current buffer (RW)		Buffer | 
					
						
							|  |  |  | 		vim.current.window	The current window (RW)		Window | 
					
						
							|  |  |  | 		vim.current.tabpage	The current tab page (RW)	TabPage | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 		vim.current.range	The current line range (RO)	Range | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-15 21:00:38 +00:00
										 |  |  | 	The last case deserves a little explanation.  When the :python or | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 	:pyfile command specifies a range, this range of lines becomes the | 
					
						
							| 
									
										
										
										
											2005-04-15 21:00:38 +00:00
										 |  |  | 	"current range".  A range is a bit like a buffer, but with all access | 
					
						
							|  |  |  | 	restricted to a subset of lines.  See |python-range| for more details. | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-15 15:51:08 +02:00
										 |  |  | 	Note: When assigning to vim.current.{buffer,window,tabpage} it expects  | 
					
						
							|  |  |  | 	valid |python-buffer|, |python-window| or |python-tabpage| objects  | 
					
						
							|  |  |  | 	respectively. Assigning triggers normal (with |autocommand|s)  | 
					
						
							|  |  |  | 	switching to given buffer, window or tab page. It is the only way to  | 
					
						
							|  |  |  | 	switch UI objects in python: you can't assign to  | 
					
						
							|  |  |  | 	|python-tabpage|.window attribute. To switch without triggering  | 
					
						
							|  |  |  | 	autocommands use > | 
					
						
							|  |  |  | 	    py << EOF | 
					
						
							|  |  |  | 	    saved_eventignore = vim.options['eventignore'] | 
					
						
							|  |  |  | 	    vim.options['eventignore'] = 'all' | 
					
						
							|  |  |  | 	    try: | 
					
						
							|  |  |  | 	        vim.current.buffer = vim.buffers[2] # Switch to buffer 2 | 
					
						
							|  |  |  | 	    finally: | 
					
						
							|  |  |  | 	        vim.options['eventignore'] = saved_eventignore | 
					
						
							|  |  |  | 	    EOF | 
					
						
							|  |  |  | < | 
					
						
							| 
									
										
										
										
											2013-04-24 14:07:45 +02:00
										 |  |  | vim.vars						*python-vars* | 
					
						
							|  |  |  | vim.vvars						*python-vvars* | 
					
						
							|  |  |  | 	Dictionary-like objects holding dictionaries with global (|g:|) and  | 
					
						
							|  |  |  | 	vim (|v:|) variables respectively. Identical to `vim.bindeval("g:")`,  | 
					
						
							|  |  |  | 	but faster. | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-06 03:52:55 +02:00
										 |  |  | vim.options						*python-options* | 
					
						
							|  |  |  | 	Object partly supporting mapping protocol (supports setting and  | 
					
						
							|  |  |  | 	getting items) providing a read-write access to global options. | 
					
						
							|  |  |  | 	Note: unlike |:set| this provides access only to global options. You | 
					
						
							|  |  |  | 	cannot use this object to obtain or set local options' values or | 
					
						
							|  |  |  | 	access local-only options in any fashion. Raises KeyError if no global | 
					
						
							|  |  |  | 	option with such name exists (i.e. does not raise KeyError for | 
					
						
							|  |  |  | 	|global-local| options and global only options, but does for window- | 
					
						
							|  |  |  | 	and buffer-local ones).  Use |python-buffer| objects to access to | 
					
						
							|  |  |  | 	buffer-local options and |python-window| objects to access to | 
					
						
							|  |  |  | 	window-local options. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-21 19:50:34 +02:00
										 |  |  | 	Type of this object is available via "Options" attribute of vim  | 
					
						
							|  |  |  | 	module. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | Output from Python					*python-output* | 
					
						
							|  |  |  | 	Vim displays all Python code output in the Vim message area.  Normal | 
					
						
							|  |  |  | 	output appears as information messages, and error output appears as | 
					
						
							|  |  |  | 	error messages. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	In implementation terms, this means that all output to sys.stdout | 
					
						
							|  |  |  | 	(including the output from print statements) appears as information | 
					
						
							|  |  |  | 	messages, and all output to sys.stderr (including error tracebacks) | 
					
						
							|  |  |  | 	appears as error messages. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 							*python-input* | 
					
						
							|  |  |  | 	Input (via sys.stdin, including input() and raw_input()) is not | 
					
						
							| 
									
										
										
										
											2005-04-15 21:00:38 +00:00
										 |  |  | 	supported, and may cause the program to crash.  This should probably be | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 	fixed. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ============================================================================== | 
					
						
							|  |  |  | 3. Buffer objects					*python-buffer* | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-15 21:00:38 +00:00
										 |  |  | Buffer objects represent vim buffers.  You can obtain them in a number of ways: | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 	- via vim.current.buffer (|python-current|) | 
					
						
							|  |  |  | 	- from indexing vim.buffers (|python-buffers|) | 
					
						
							|  |  |  | 	- from the "buffer" attribute of a window (|python-window|) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-04 21:59:01 +01:00
										 |  |  | Buffer objects have two read-only attributes - name - the full file name for | 
					
						
							|  |  |  | the buffer, and number - the buffer number.  They also have three methods | 
					
						
							|  |  |  | (append, mark, and range; see below). | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-15 21:00:38 +00:00
										 |  |  | You can also treat buffer objects as sequence objects.  In this context, they | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | act as if they were lists (yes, they are mutable) of strings, with each | 
					
						
							| 
									
										
										
										
											2005-04-15 21:00:38 +00:00
										 |  |  | element being a line of the buffer.  All of the usual sequence operations, | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | including indexing, index assignment, slicing and slice assignment, work as | 
					
						
							| 
									
										
										
										
											2005-04-15 21:00:38 +00:00
										 |  |  | you would expect.  Note that the result of indexing (slicing) a buffer is a | 
					
						
							|  |  |  | string (list of strings).  This has one unusual consequence - b[:] is different | 
					
						
							|  |  |  | from b.  In particular, "b[:] = None" deletes the whole of the buffer, whereas | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | "b = None" merely updates the variable b, with no effect on the buffer. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-15 21:00:38 +00:00
										 |  |  | Buffer indexes start at zero, as is normal in Python.  This differs from vim | 
					
						
							|  |  |  | line numbers, which start from 1.  This is particularly relevant when dealing | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | with marks (see below) which use vim line numbers. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-06 03:52:55 +02:00
										 |  |  | The buffer object attributes are: | 
					
						
							|  |  |  | 	b.vars		Dictionary-like object used to access  | 
					
						
							|  |  |  | 			|buffer-variable|s. | 
					
						
							|  |  |  | 	b.options	Mapping object (supports item getting, setting and  | 
					
						
							|  |  |  | 			deleting) that provides access to buffer-local options  | 
					
						
							|  |  |  | 			and buffer-local values of |global-local| options. Use  | 
					
						
							|  |  |  | 			|python-window|.options if option is window-local,  | 
					
						
							|  |  |  | 			this object will raise KeyError. If option is  | 
					
						
							|  |  |  | 			|global-local| and local value is missing getting it  | 
					
						
							|  |  |  | 			will return None. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | The buffer object methods are: | 
					
						
							|  |  |  | 	b.append(str)	Append a line to the buffer | 
					
						
							| 
									
										
										
										
											2010-07-24 16:58:02 +02:00
										 |  |  | 	b.append(str, nr)  Idem, below line "nr" | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 	b.append(list)	Append a list of lines to the buffer | 
					
						
							|  |  |  | 			Note that the option of supplying a list of strings to | 
					
						
							|  |  |  | 			the append method differs from the equivalent method | 
					
						
							|  |  |  | 			for Python's built-in list objects. | 
					
						
							| 
									
										
										
										
											2010-07-24 16:58:02 +02:00
										 |  |  | 	b.append(list, nr)  Idem, below line "nr" | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 	b.mark(name)	Return a tuple (row,col) representing the position | 
					
						
							|  |  |  | 			of the named mark (can also get the []"<> marks) | 
					
						
							|  |  |  | 	b.range(s,e)	Return a range object (see |python-range|) which | 
					
						
							|  |  |  | 			represents the part of the given buffer between line | 
					
						
							|  |  |  | 			numbers s and e |inclusive|. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-07-26 12:53:41 +00:00
										 |  |  | Note that when adding a line it must not contain a line break character '\n'. | 
					
						
							|  |  |  | A trailing '\n' is allowed and ignored, so that you can do: > | 
					
						
							|  |  |  | 	:py b.append(f.readlines()) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-21 19:50:34 +02:00
										 |  |  | Buffer object type is available using "Buffer" attribute of vim module. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | Examples (assume b is the current buffer) > | 
					
						
							| 
									
										
										
										
											2004-07-26 12:53:41 +00:00
										 |  |  | 	:py print b.name		# write the buffer file name | 
					
						
							|  |  |  | 	:py b[0] = "hello!!!"		# replace the top line | 
					
						
							|  |  |  | 	:py b[:] = None			# delete the whole buffer | 
					
						
							|  |  |  | 	:py del b[:]			# delete the whole buffer | 
					
						
							|  |  |  | 	:py b[0:0] = [ "a line" ]	# add a line at the top | 
					
						
							|  |  |  | 	:py del b[2]			# delete a line (the third) | 
					
						
							|  |  |  | 	:py b.append("bottom")		# add a line at the bottom | 
					
						
							|  |  |  | 	:py n = len(b)			# number of lines | 
					
						
							|  |  |  | 	:py (row,col) = b.mark('a')	# named mark | 
					
						
							|  |  |  | 	:py r = b.range(1,5)		# a sub-range of the buffer | 
					
						
							| 
									
										
										
										
											2013-04-24 14:07:45 +02:00
										 |  |  | 	:py b.vars["foo"] = "bar"	# assign b:foo variable | 
					
						
							| 
									
										
										
										
											2013-05-06 03:52:55 +02:00
										 |  |  | 	:py b.options["ff"] = "dos"	# set fileformat | 
					
						
							|  |  |  | 	:py del b.options["ar"]		# same as :set autoread< | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | ============================================================================== | 
					
						
							|  |  |  | 4. Range objects					*python-range* | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-15 21:00:38 +00:00
										 |  |  | Range objects represent a part of a vim buffer.  You can obtain them in a | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | number of ways: | 
					
						
							|  |  |  | 	- via vim.current.range (|python-current|) | 
					
						
							|  |  |  | 	- from a buffer's range() method (|python-buffer|) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-15 21:00:38 +00:00
										 |  |  | A range object is almost identical in operation to a buffer object.  However, | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | all operations are restricted to the lines within the range (this line range | 
					
						
							|  |  |  | can, of course, change as a result of slice assignments, line deletions, or | 
					
						
							|  |  |  | the range.append() method). | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The range object attributes are: | 
					
						
							|  |  |  | 	r.start		Index of first line into the buffer | 
					
						
							|  |  |  | 	r.end		Index of last line into the buffer | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The range object methods are: | 
					
						
							|  |  |  | 	r.append(str)	Append a line to the range | 
					
						
							| 
									
										
										
										
											2010-07-24 16:58:02 +02:00
										 |  |  | 	r.append(str, nr)  Idem, after line "nr" | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 	r.append(list)	Append a list of lines to the range | 
					
						
							|  |  |  | 			Note that the option of supplying a list of strings to | 
					
						
							|  |  |  | 			the append method differs from the equivalent method | 
					
						
							|  |  |  | 			for Python's built-in list objects. | 
					
						
							| 
									
										
										
										
											2010-07-24 16:58:02 +02:00
										 |  |  | 	r.append(list, nr)  Idem, after line "nr" | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-21 19:50:34 +02:00
										 |  |  | Range object type is available using "Range" attribute of vim module. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | Example (assume r is the current range): | 
					
						
							|  |  |  | 	# Send all lines in a range to the default printer | 
					
						
							|  |  |  | 	vim.command("%d,%dhardcopy!" % (r.start+1,r.end+1)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ============================================================================== | 
					
						
							|  |  |  | 5. Window objects					*python-window* | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-15 21:00:38 +00:00
										 |  |  | Window objects represent vim windows.  You can obtain them in a number of ways: | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 	- via vim.current.window (|python-current|) | 
					
						
							|  |  |  | 	- from indexing vim.windows (|python-windows|) | 
					
						
							| 
									
										
										
										
											2013-05-15 15:12:29 +02:00
										 |  |  | 	- from indexing "windows" attribute of a tab page (|python-tabpage|) | 
					
						
							|  |  |  | 	- from the "window" attribute of a tab page (|python-tabpage|) | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-15 21:00:38 +00:00
										 |  |  | You can manipulate window objects only through their attributes.  They have no | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | methods, and no sequence or other interface. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Window attributes are: | 
					
						
							|  |  |  | 	buffer (read-only)	The buffer displayed in this window | 
					
						
							|  |  |  | 	cursor (read-write)	The current cursor position in the window | 
					
						
							|  |  |  | 				This is a tuple, (row,col). | 
					
						
							|  |  |  | 	height (read-write)	The window height, in rows | 
					
						
							|  |  |  | 	width (read-write)	The window width, in columns | 
					
						
							| 
									
										
										
										
											2013-04-24 14:07:45 +02:00
										 |  |  | 	vars (read-only)	The window |w:| variables. Attribute is  | 
					
						
							|  |  |  | 				unassignable, but you can change window  | 
					
						
							|  |  |  | 				variables this way | 
					
						
							| 
									
										
										
										
											2013-05-06 03:52:55 +02:00
										 |  |  | 	options (read-only)	The window-local options. Attribute is  | 
					
						
							|  |  |  | 				unassignable, but you can change window  | 
					
						
							|  |  |  | 				options this way. Provides access only to  | 
					
						
							|  |  |  | 				window-local options, for buffer-local use  | 
					
						
							|  |  |  | 				|python-buffer| and for global ones use  | 
					
						
							|  |  |  | 				|python-options|. If option is |global-local|  | 
					
						
							|  |  |  | 				and local value is missing getting it will  | 
					
						
							|  |  |  | 				return None. | 
					
						
							| 
									
										
										
										
											2013-05-12 19:00:41 +02:00
										 |  |  | 	number (read-only)	Window number.  The first window has number 1. | 
					
						
							|  |  |  | 				This is zero in case it cannot be determined | 
					
						
							|  |  |  | 				(e.g. when the window object belongs to other | 
					
						
							|  |  |  | 				tab page). | 
					
						
							| 
									
										
										
										
											2013-05-17 16:18:33 +02:00
										 |  |  | 	row, col (read-only)	On-screen window position in display cells. | 
					
						
							| 
									
										
										
										
											2013-05-12 19:30:31 +02:00
										 |  |  | 				First position is zero. | 
					
						
							| 
									
										
										
										
											2013-05-17 16:18:33 +02:00
										 |  |  | 	tabpage (read-only)	Window tab page. | 
					
						
							| 
									
										
										
										
											2013-05-12 19:30:31 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | The height attribute is writable only if the screen is split horizontally. | 
					
						
							|  |  |  | The width attribute is writable only if the screen is split vertically. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-21 19:50:34 +02:00
										 |  |  | Window object type is available using "Window" attribute of vim module. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-15 15:12:29 +02:00
										 |  |  | ============================================================================== | 
					
						
							|  |  |  | 6. Tab page objects					*python-tabpage* | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Tab page objects represent vim tab pages. You can obtain them in a number of  | 
					
						
							|  |  |  | ways: | 
					
						
							|  |  |  | 	- via vim.current.tabpage (|python-current|) | 
					
						
							|  |  |  | 	- from indexing vim.tabpages (|python-tabpages|) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | You can use this object to access tab page windows. They have no methods and  | 
					
						
							|  |  |  | no sequence or other interfaces. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Tab page attributes are: | 
					
						
							|  |  |  | 	number		The tab page number like the one returned by  | 
					
						
							|  |  |  | 			|tabpagenr()|. | 
					
						
							|  |  |  | 	windows		Like |python-windows|, but for current tab page. | 
					
						
							|  |  |  | 	vars		The tab page |t:| variables. | 
					
						
							|  |  |  | 	window		Current tabpage window. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-21 19:50:34 +02:00
										 |  |  | TabPage object type is available using "TabPage" attribute of vim module. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-23 21:25:05 +00:00
										 |  |  | ============================================================================== | 
					
						
							| 
									
										
										
										
											2013-05-21 19:50:34 +02:00
										 |  |  | 7. pyeval() and py3eval() Vim functions			*python-pyeval* | 
					
						
							| 
									
										
										
										
											2012-07-12 22:01:11 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | To facilitate bi-directional interface, you can use |pyeval()| and |py3eval()|  | 
					
						
							|  |  |  | functions to evaluate Python expressions and pass their values to VimL. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ============================================================================== | 
					
						
							| 
									
										
										
										
											2013-05-21 19:50:34 +02:00
										 |  |  | 8. Dynamic loading					*python-dynamic* | 
					
						
							| 
									
										
										
										
											2005-11-23 21:25:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | On MS-Windows the Python library can be loaded dynamically.  The |:version| | 
					
						
							|  |  |  | output then includes |+python/dyn|. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | This means that Vim will search for the Python DLL file only when needed. | 
					
						
							|  |  |  | When you don't use the Python interface you don't need it, thus you can use | 
					
						
							|  |  |  | Vim without this DLL file. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | To use the Python interface the Python DLL must be in your search path.  In a | 
					
						
							|  |  |  | console window type "path" to see what directories are used. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The name of the DLL must match the Python version Vim was compiled with. | 
					
						
							|  |  |  | Currently the name is "python24.dll".  That is for Python 2.4.  To know for | 
					
						
							|  |  |  | sure edit "gvim.exe" and search for "python\d*.dll\c". | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-18 18:04:50 +02:00
										 |  |  | ============================================================================== | 
					
						
							| 
									
										
										
										
											2013-05-21 19:50:34 +02:00
										 |  |  | 9. Python 3						*python3* | 
					
						
							| 
									
										
										
										
											2010-07-18 18:04:50 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-13 22:05:54 +02:00
										 |  |  | 							*:py3* *:python3* | 
					
						
							| 
									
										
										
										
											2013-05-17 16:40:06 +02:00
										 |  |  | The `:py3` and `:python3` commands work similar to `:python`.  A simple check | 
					
						
							| 
									
										
										
										
											2013-02-06 17:34:04 +01:00
										 |  |  | if the `:py3` command is working: > | 
					
						
							| 
									
										
										
										
											2012-08-15 17:43:31 +02:00
										 |  |  | 	:py3 print("Hello") | 
					
						
							|  |  |  | <							*:py3file* | 
					
						
							| 
									
										
										
										
											2013-05-17 16:40:06 +02:00
										 |  |  | The `:py3file` command works similar to `:pyfile`. | 
					
						
							| 
									
										
										
										
											2013-05-17 16:18:33 +02:00
										 |  |  | 							*:py3do* *E863* | 
					
						
							| 
									
										
										
										
											2013-05-17 16:40:06 +02:00
										 |  |  | The `:py3do` command works similar to `:pydo`. | 
					
						
							| 
									
										
										
										
											2013-05-15 18:28:13 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-12 22:01:11 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-25 15:49:07 +02:00
										 |  |  | Vim can be built in four ways (:version output): | 
					
						
							| 
									
										
										
										
											2010-08-13 22:05:54 +02:00
										 |  |  | 1. No Python support	    (-python, -python3) | 
					
						
							| 
									
										
										
										
											2010-07-25 15:49:07 +02:00
										 |  |  | 2. Python 2 support only    (+python or +python/dyn, -python3) | 
					
						
							|  |  |  | 3. Python 3 support only    (-python, +python3 or +python3/dyn) | 
					
						
							|  |  |  | 4. Python 2 and 3 support   (+python/dyn, +python3/dyn) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-13 22:05:54 +02:00
										 |  |  | Some more details on the special case 4: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | When Python 2 and Python 3 are both supported they must be loaded dynamically. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | When doing this on Linux/Unix systems and importing global symbols, this leads | 
					
						
							|  |  |  | to a crash when the second Python version is used.  So either global symbols | 
					
						
							|  |  |  | are loaded but only one Python version is activated, or no global symbols are | 
					
						
							| 
									
										
										
										
											2010-10-20 18:45:33 +02:00
										 |  |  | loaded. The latter makes Python's "import" fail on libraries that expect the | 
					
						
							| 
									
										
										
										
											2010-08-13 22:05:54 +02:00
										 |  |  | symbols to be provided by Vim. | 
					
						
							| 
									
										
										
										
											2010-08-13 16:22:57 +02:00
										 |  |  | 							*E836* *E837* | 
					
						
							| 
									
										
										
										
											2010-08-13 22:05:54 +02:00
										 |  |  | Vim's configuration script makes a guess for all libraries based on one | 
					
						
							|  |  |  | standard Python library (termios).  If importing this library succeeds for | 
					
						
							|  |  |  | both Python versions, then both will be made available in Vim at the same | 
					
						
							|  |  |  | time.  If not, only the version first used in a session will be enabled. | 
					
						
							|  |  |  | When trying to use the other one you will get the E836 or E837 error message. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Here Vim's behavior depends on the system in which it was configured.  In a | 
					
						
							|  |  |  | system where both versions of Python were configured with --enable-shared, | 
					
						
							|  |  |  | both versions of Python will be activated at the same time.  There will still | 
					
						
							|  |  |  | be problems with other third party libraries that were not linked to | 
					
						
							|  |  |  | libPython. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | To work around such problems there are these options: | 
					
						
							|  |  |  | 1. The problematic library is recompiled to link to the according | 
					
						
							|  |  |  |    libpython.so. | 
					
						
							|  |  |  | 2. Vim is recompiled for only one Python version. | 
					
						
							|  |  |  | 3. You undefine PY_NO_RTLD_GLOBAL in auto/config.h after configuration.  This | 
					
						
							|  |  |  |    may crash Vim though. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-10 17:18:44 +02:00
										 |  |  | 							*has-python* | 
					
						
							|  |  |  | You can test what Python version is available with: > | 
					
						
							|  |  |  | 	if has('python') | 
					
						
							| 
									
										
										
										
											2011-09-14 17:55:08 +02:00
										 |  |  | 	  echo 'there is Python 2.x' | 
					
						
							| 
									
										
										
										
											2011-05-10 17:18:44 +02:00
										 |  |  |   	elseif has('python3') | 
					
						
							|  |  |  | 	  echo 'there is Python 3.x' | 
					
						
							|  |  |  | 	endif | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Note however, that when Python 2 and 3 are both available and loaded | 
					
						
							|  |  |  | dynamically, these has() calls will try to load them.  If only one can be | 
					
						
							|  |  |  | loaded at a time, just checking if Python 2 or 3 are available will prevent | 
					
						
							|  |  |  | the other one from being available. | 
					
						
							| 
									
										
										
										
											2010-07-18 18:04:50 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | ============================================================================== | 
					
						
							|  |  |  |  vim:tw=78:ts=8:ft=help:norl: |