diff options
author | Michael Reed <m.reed@mykolab.com> | 2015-02-17 01:18:22 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-03-11 18:32:58 -0400 |
commit | 032c20078a617252ff9fc5ac03b4c390a6868a4d (patch) | |
tree | 9d4b88f2a3a9458ae44c4855634fd3553ddb7a13 /src/nvim/os | |
parent | 1e6c48748888da3811f994da678d755108629584 (diff) | |
download | rneovim-032c20078a617252ff9fc5ac03b4c390a6868a4d.tar.gz rneovim-032c20078a617252ff9fc5ac03b4c390a6868a4d.tar.bz2 rneovim-032c20078a617252ff9fc5ac03b4c390a6868a4d.zip |
os_unix_defs && os/unix_defs: Consistently use '~' over '$HOME' #2009
these path names are ridiculous...
Based on #889, but also remove some unused #defines
Diffstat (limited to 'src/nvim/os')
-rw-r--r-- | src/nvim/os/unix_defs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/os/unix_defs.h b/src/nvim/os/unix_defs.h index e518ac67e5..28ae89ff77 100644 --- a/src/nvim/os/unix_defs.h +++ b/src/nvim/os/unix_defs.h @@ -1,7 +1,7 @@ #ifndef NVIM_OS_UNIX_DEFS_H #define NVIM_OS_UNIX_DEFS_H -#define TEMP_DIR_NAMES {"$TMPDIR", "/tmp", ".", "$HOME"} +#define TEMP_DIR_NAMES {"$TMPDIR", "/tmp", ".", "~"} #define TEMP_FILE_PATH_MAXLEN 256 #endif // NVIM_OS_UNIX_DEFS_H |