Looking at the source code for neovim (I'll check gvim later) I see the
following in a file called funcs.c that evaluates the environment
variables among other things:
/// According to comments in src/win/process.c of libuv, Windows has a few
/// "essential" environment variables.
static const char *required_env_vars[] = {
#ifdef WIN32
"HOMEDRIVE",
"HOMEPATH",
"LOGONSERVER",
"PATH",
"SYSTEMDRIVE",
"SYSTEMROOT",
"TEMP",
"USERDOMAIN",
"USERNAME",
"USERPROFILE",
"WINDIR",
#endif
NULL
};
But if you are running in cygwin I would have thought that shell only
uses a UNIX environment, so $HOME would be all that is needed. I have
not checked the logic of what happens when these variables are not set
in the code. [I'm not a vim developer - yet!]
Andrew
--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_use/8122a1cb-cb78-a281-fec5-9a381a08d274%40gmail.com.