xref: /dragonfly/usr.bin/vi/pathnames.h (revision 7b6d543efe3ee8318cbde09f08b90e667aaf39e3)
1 /* $Id: pathnames.h.in,v 8.7 2012/04/23 08:34:52 zy Exp $ */
2 /* $FreeBSD: head/usr.bin/vi/pathnames.h 254225 2013-08-11 20:03:12Z peter $ */
3 
4 /* Read standard system paths first. */
5 #include <paths.h>
6 
7 #ifndef   _PATH_EXRC
8 #define   _PATH_EXRC          ".exrc"
9 #endif
10 
11 #ifndef   _PATH_MSGCAT
12 #define   _PATH_MSGCAT        "/usr/share/vi/catalog/"
13 #endif
14 
15 #ifndef   _PATH_NEXRC
16 #define   _PATH_NEXRC         ".nexrc"
17 #endif
18 
19 #ifndef   NVI_PATH_PRESERVE
20 #define   NVI_PATH_PRESERVE   "/var/tmp/vi.recover/"
21 #endif
22 
23 #ifndef   _PATH_SYSEXRC
24 #define   _PATH_SYSEXRC       "/etc/vi.exrc"
25 #endif
26 
27 #ifndef   _PATH_TAGS
28 #define   _PATH_TAGS          "tags"
29 #endif
30