comparison src/option.h @ 13154:53cc7ea77c54 v8.0.1451

patch 8.0.1451: difficult to set the python home directories properly commit https://github.com/vim/vim/commit/94073167e3aa8cbe18380e93a2fc8e8165438cc8 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jan 31 21:49:05 2018 +0100 patch 8.0.1451: difficult to set the python home directories properly Problem: It is difficult to set the python home directory properly for Python 2.7 and 3.5 since both use $PYTHONHOME. Solution: Add the 'pythonhome' and 'pythonthreehome' options. (Kazuki Sakamoto, closes #1266)
author Christian Brabandt <cb@256bit.org>
date Wed, 31 Jan 2018 22:00:07 +0100
parents 85a601f985ab
children 6e972d830e13
comparison
equal deleted inserted replaced
13153:c30f721849cb 13154:53cc7ea77c54
694 EXTERN char_u *p_perldll; /* 'perldll' */ 694 EXTERN char_u *p_perldll; /* 'perldll' */
695 #endif 695 #endif
696 #if defined(DYNAMIC_PYTHON3) 696 #if defined(DYNAMIC_PYTHON3)
697 EXTERN char_u *p_py3dll; /* 'pythonthreedll' */ 697 EXTERN char_u *p_py3dll; /* 'pythonthreedll' */
698 #endif 698 #endif
699 #ifdef FEAT_PYTHON3
700 EXTERN char_u *p_py3home; /* 'pythonthreehome' */
701 #endif
699 #if defined(DYNAMIC_PYTHON) 702 #if defined(DYNAMIC_PYTHON)
700 EXTERN char_u *p_pydll; /* 'pythondll' */ 703 EXTERN char_u *p_pydll; /* 'pythondll' */
704 #endif
705 #ifdef FEAT_PYTHON
706 EXTERN char_u *p_pyhome; /* 'pythonhome' */
701 #endif 707 #endif
702 #if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) 708 #if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3)
703 EXTERN long p_pyx; /* 'pyxversion' */ 709 EXTERN long p_pyx; /* 'pyxversion' */
704 #endif 710 #endif
705 #ifdef FEAT_RELTIME 711 #ifdef FEAT_RELTIME