Skip to content

Instantly share code, notes, and snippets.

@573
Created March 2, 2011 15:04
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 573/851059 to your computer and use it in GitHub Desktop.
Save 573/851059 to your computer and use it in GitHub Desktop.
Custom adaptions to the feature.h file from vim sources as recommended here: http://vim.wikia.com/wiki/Build_Python-enabled_Vim_on_Windows_with_MinGW
--- E:\temp\vim\vim73\src\feature_original.h 2011-03-01 13:58:38 +0000
+++ E:\temp\vim\vim73\src\feature.h 2011-03-01 15:30:11 +0000
@@ -1239,7 +1239,8 @@
# if ((defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA)) \
&& defined(HAVE_X11_XPM_H)) \
|| defined(FEAT_GUI_GTK) \
- || (defined(WIN32) && defined(FEAT_GUI))
+ || (defined(WIN32) && defined(FEAT_GUI)) \
+ || defined(FEAT_NORMAL)
# define FEAT_SIGN_ICONS
# endif
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment