aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/os/unix_defs.h
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2015-07-06 08:21:07 -0400
committerJustin M. Keyes <justinkz@gmail.com>2015-07-06 08:23:21 -0400
commit3955ffa3051076926c904f2e05a9057aac7ea936 (patch)
tree7342433c4a0632fdfd9301e0e3146e06ed41bc2e /src/nvim/os/unix_defs.h
parentd4b4d7d0ec3b50955ce1d2f1dd10e30ef290392c (diff)
downloadrneovim-3955ffa3051076926c904f2e05a9057aac7ea936.tar.gz
rneovim-3955ffa3051076926c904f2e05a9057aac7ea936.tar.bz2
rneovim-3955ffa3051076926c904f2e05a9057aac7ea936.zip
os/*defs: restore some comments and formatting.
Diffstat (limited to 'src/nvim/os/unix_defs.h')
-rw-r--r--src/nvim/os/unix_defs.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/nvim/os/unix_defs.h b/src/nvim/os/unix_defs.h
index de5dac3369..9ab4ba1c1a 100644
--- a/src/nvim/os/unix_defs.h
+++ b/src/nvim/os/unix_defs.h
@@ -18,38 +18,31 @@
// Special wildcards that need to be handled by the shell.
#define SPECIAL_WILDCHAR "`'{"
+// Unix system-dependent file names
#ifndef SYS_VIMRC_FILE
# define SYS_VIMRC_FILE "$VIM/nvimrc"
#endif
-
#ifndef DFLT_HELPFILE
# define DFLT_HELPFILE "$VIMRUNTIME/doc/help.txt"
#endif
-
#ifndef SYNTAX_FNAME
# define SYNTAX_FNAME "$VIMRUNTIME/syntax/%s.vim"
#endif
-
#ifndef USR_EXRC_FILE
# define USR_EXRC_FILE "~/.exrc"
#endif
-
#ifndef USR_VIMRC_FILE
# define USR_VIMRC_FILE "~/.nvimrc"
#endif
-
#ifndef USR_VIMRC_FILE2
# define USR_VIMRC_FILE2 "~/.nvim/nvimrc"
#endif
-
#ifndef EXRC_FILE
# define EXRC_FILE ".exrc"
#endif
-
#ifndef VIMRC_FILE
# define VIMRC_FILE ".nvimrc"
#endif
-
#ifndef VIMINFO_FILE
# define VIMINFO_FILE "~/.nviminfo"
#endif