Ticket #121: Fixed IPV4 FTP connection scheme
[midnight-commander.git] / lib / fileloc.h
blobd371670dca43144649d6aa19a412641663f7d270
2 /** \file fileloc.h
3 * \brief Header: config files list
5 * This file defines the locations of the various user specific
6 * configuration files of the Midnight Commander. Historically the
7 * system wide and the user specific file names have not always been
8 * the same, so don't use these names for finding system wide
9 * configuration files.
11 * \todo This inconsistency should disappear in the one of the next versions (5.0?)
14 #ifndef MC_FILELOC_H
15 #define MC_FILELOC_H
17 #ifndef MC_USERCONF_DIR
18 #define MC_USERCONF_DIR ".mc"
19 #endif
22 #define TAGS_NAME "TAGS"
24 #define MC_GLOBAL_CONFIG_FILE "mc.lib"
25 #define MC_GLOBAL_MENU "mc.menu"
26 #define MC_LOCAL_MENU ".mc.menu"
27 #define MC_HINT "mc.hint"
28 #define GLOBAL_KEYMAP_FILE "mc.keymap"
29 #define CHARSETS_INDEX "mc.charsets"
30 #define MC_LIB_EXT "mc.ext"
32 #define FISH_PREFIX "fish"
34 #define FISH_LS_FILE "ls"
35 #define FISH_EXISTS_FILE "fexists"
36 #define FISH_MKDIR_FILE "mkdir"
37 #define FISH_UNLINK_FILE "unlink"
38 #define FISH_CHOWN_FILE "chown"
39 #define FISH_CHMOD_FILE "chmod"
40 #define FISH_RMDIR_FILE "rmdir"
41 #define FISH_LN_FILE "ln"
42 #define FISH_MV_FILE "mv"
43 #define FISH_HARDLINK_FILE "hardlink"
44 #define FISH_GET_FILE "get"
45 #define FISH_SEND_FILE "send"
46 #define FISH_APPEND_FILE "append"
47 #define FISH_INFO_FILE "info"
49 #define MC_EXTFS_DIR "extfs.d"
51 #define MC_BASHRC_FILE "bashrc"
52 #define MC_CONFIG_FILE "ini"
53 #define MC_FILEBIND_FILE "bindings"
54 #define MC_FILEPOS_FILE "filepos"
55 #define MC_HISTORY_FILE "history"
56 #define MC_HOTLIST_FILE "hotlist"
57 #define MC_USERMENU_FILE "menu"
58 #define MC_TREESTORE_FILE "Tree"
59 #define MC_PANELS_FILE "panels.ini"
60 #define MC_FHL_INI_FILE "filehighlight.ini"
61 #define MC_SKINS_SUBDIR "skins"
63 /* editor home directory */
64 #define EDIT_DIR MC_USERCONF_DIR PATH_SEP_STR "cedit"
66 /* file names */
67 #define EDIT_SYNTAX_FILE EDIT_DIR PATH_SEP_STR "Syntax"
68 #define EDIT_CLIP_FILE EDIT_DIR PATH_SEP_STR "cooledit.clip"
69 #define EDIT_MACRO_FILE EDIT_DIR PATH_SEP_STR "cooledit.macros"
70 #define EDIT_BLOCK_FILE EDIT_DIR PATH_SEP_STR "cooledit.block"
71 #define EDIT_TEMP_FILE EDIT_DIR PATH_SEP_STR "cooledit.temp"
73 #define EDIT_GLOBAL_MENU "cedit.menu"
74 #define EDIT_LOCAL_MENU ".cedit.menu"
75 #define EDIT_HOME_MENU EDIT_DIR PATH_SEP_STR "menu"
77 #endif