mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
Use macro
This commit is contained in:
parent
cfdd745611
commit
6c2dc7fc95
18
src/nnn.c
18
src/nnn.c
|
@ -519,15 +519,17 @@ static const char * const messages[] = {
|
||||||
|
|
||||||
/* Supported configuration environment variables */
|
/* Supported configuration environment variables */
|
||||||
#define NNN_BMS 0
|
#define NNN_BMS 0
|
||||||
#define NNN_OPENER 1
|
#define NNN_PLUG 1
|
||||||
#define NNN_CONTEXT_COLORS 2
|
#define NNN_OPENER 2
|
||||||
#define NNNLVL 3
|
#define NNN_CONTEXT_COLORS 3
|
||||||
#define NNN_PIPE 4
|
#define NNNLVL 4
|
||||||
#define NNN_ARCHIVE 5 /* strings end here */
|
#define NNN_PIPE 5
|
||||||
#define NNN_TRASH 6 /* flags begin here */
|
#define NNN_ARCHIVE 6 /* strings end here */
|
||||||
|
#define NNN_TRASH 7 /* flags begin here */
|
||||||
|
|
||||||
static const char * const env_cfg[] = {
|
static const char * const env_cfg[] = {
|
||||||
"NNN_BMS",
|
"NNN_BMS",
|
||||||
|
"NNN_PLUG",
|
||||||
"NNN_OPENER",
|
"NNN_OPENER",
|
||||||
"NNN_CONTEXT_COLORS",
|
"NNN_CONTEXT_COLORS",
|
||||||
"NNNLVL",
|
"NNNLVL",
|
||||||
|
@ -6024,8 +6026,8 @@ int main(int argc, char *argv[])
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Parse plugins string */
|
/* Parse plugins string */
|
||||||
if (!parsekvpair(plug, &pluginstr, "NNN_PLUG", PLUGIN_MAX, PATH_MAX)) {
|
if (!parsekvpair(plug, &pluginstr, env_cfg[NNN_PLUG], PLUGIN_MAX, PATH_MAX)) {
|
||||||
fprintf(stderr, "%s\n", "NNN_PLUG");
|
fprintf(stderr, "%s\n", env_cfg[NNN_PLUG]);
|
||||||
return _FAILURE;
|
return _FAILURE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue