diff --git a/doc/man/mc.1.in b/doc/man/mc.1.in index 694f15af3..ee29d28c4 100644 --- a/doc/man/mc.1.in +++ b/doc/man/mc.1.in @@ -3431,6 +3431,10 @@ helplink, helpslink, helptitle. Viewer color are: viewbold, viewunderline, view Editor colors are: editnormal, editbold, editmarked, editwhitespace, editlinestate. Popup menu colors are: pmenunormal, pmenusel, pmenutitle. .PP +.I header +determines the color of panel header, the line that contains column titles +and sort mode indicator. +.PP .I input determines the color of input lines used in query dialogs. .PP diff --git a/doc/man/ru/mc.1.in b/doc/man/ru/mc.1.in index 80a05b2ee..b0d23f415 100644 --- a/doc/man/ru/mc.1.in +++ b/doc/man/ru/mc.1.in @@ -3696,6 +3696,10 @@ editnormal, editbold, editmarked, editwhitespace, editlinestate. каждым ключевым словом, можно понять из перевода этого ключевого слова. Некоторые случаи требуют пояснений. .PP +.I header +определяет цвет заголовка панели, строку, содержащую заголовки панелей +и индикатор сортировки. +.PP .I input определяет цвета в строке ввода в диалоговых окнах; .PP diff --git a/lib/skin/colors-old.c b/lib/skin/colors-old.c index 8c1e73934..0a74048fc 100644 --- a/lib/skin/colors-old.c +++ b/lib/skin/colors-old.c @@ -58,6 +58,7 @@ static const mc_skin_colors_old_t old_colors[] = { {"markselect", "core", "markselect"}, {"disabled", "core", "disabled"}, {"reverse", "core", "reverse"}, + {"header", "core", "header"}, {"dnormal", "dialog", "_default_"}, {"dfocus", "dialog", "dfocus"}, {"dhotnormal", "dialog", "dhotnormal"}, diff --git a/misc/skins/default.ini b/misc/skins/default.ini index 19198587b..7e7955d18 100644 --- a/misc/skins/default.ini +++ b/misc/skins/default.ini @@ -1,5 +1,5 @@ [skin] - description=Standart skin + description=Standard skin [Lines] horiz=─ diff --git a/src/args.c b/src/args.c index ad53582b2..074dfd2f3 100644 --- a/src/args.c +++ b/src/args.c @@ -325,7 +325,7 @@ mc_args_new_color_group (void) _("--colors KEYWORD={FORE},{BACK},{ATTR}:KEYWORD2=...\n\n" "{FORE}, {BACK} and {ATTR} can be omitted, and the default will be used\n" "\n Keywords:\n" - " Global: errors, disabled, reverse, gauge, viewunderline\n" + " Global: errors, disabled, reverse, gauge, header\n" " input, inputmark, inputunchanged, commandlinemark\n" " bbarhotkey, bbarbutton, statusbar\n" " File display: normal, selected, marked, markselect\n"