b88d654871
Main changes: * Vim-style expandtab option * Provides Turkish translation * Backspace now deletes \ rather than being escaped * T during motion commands is now VI-compatible * Encoding related fixes, such as UTF-8 detection * Fixed a number of memory management issues MFC after: 3 weeks
29 lines
459 B
C
29 lines
459 B
C
/* $FreeBSD$ */
|
|
|
|
/* Read standard system paths first. */
|
|
#include <paths.h>
|
|
|
|
#ifndef _PATH_EXRC
|
|
#define _PATH_EXRC ".exrc"
|
|
#endif
|
|
|
|
#ifndef _PATH_MSGCAT
|
|
#define _PATH_MSGCAT "/usr/share/vi/catalog/"
|
|
#endif
|
|
|
|
#ifndef _PATH_NEXRC
|
|
#define _PATH_NEXRC ".nexrc"
|
|
#endif
|
|
|
|
#ifndef _PATH_PRESERVE
|
|
#define _PATH_PRESERVE "/var/tmp/vi.recover/"
|
|
#endif
|
|
|
|
#ifndef _PATH_SYSEXRC
|
|
#define _PATH_SYSEXRC "/etc/vi.exrc"
|
|
#endif
|
|
|
|
#ifndef _PATH_TAGS
|
|
#define _PATH_TAGS "tags"
|
|
#endif
|