localmap Compiled with local mappings and abbr. |:map-local|
lua Compiled with Lua interface |Lua|.
mac Macintosh version of Vim.
-macunix Macintosh version of Vim, using Unix files (OS-X).
+macunix Compiled for OS X, with darwin
+osx Compiled for OS X, with or without darwin
menu Compiled with support for |:menu|.
mksession Compiled with support for |:mksession|.
modify_fname Compiled with file name modifiers. |filename-modifiers|
"mac",
#endif
#if defined(MACOS_X_UNIX)
- "macunix",
+ "macunix", /* built with 'darwin' enabled */
+#endif
+#if defined(__APPLE__) && __APPLE__ == 1
+ "osx", /* built with or without 'darwin' enabled */
#endif
#ifdef __QNX__
"qnx",
finish
endif
-let s:chopt = has('macunix') ? {'waittime' : 1} : {}
+let s:chopt = has('osx') ? {'waittime' : 1} : {}
" Run "testfunc" after sarting the server and stop the server afterwards.
func s:run_server(testfunc)