mirror of
https://github.com/tstack/lnav
synced 2024-11-01 21:40:34 +00:00
[status] tweak separators
This commit is contained in:
parent
c54c2dd508
commit
6c7e935207
@ -780,11 +780,11 @@ static void update_view_name(void)
|
||||
status_field &sf = lnav_data.ld_top_source.statusview_value_for_field(
|
||||
top_status_source::TSF_VIEW_NAME);
|
||||
textview_curses *tc = lnav_data.ld_view_stack.top();
|
||||
struct line_range lr = { 0, 1 };
|
||||
struct line_range lr = { 0, 2 };
|
||||
|
||||
sf.set_value("< % 5s", view_names[tc - lnav_data.ld_views]);
|
||||
sf.set_value(":: % 5s", view_names[tc - lnav_data.ld_views]);
|
||||
sf.get_value().get_attrs()[lr].insert(make_string_attr(
|
||||
"style", A_BOLD|COLOR_PAIR(view_colors::VC_GREEN_ON_WHITE)));
|
||||
"style", COLOR_PAIR(view_colors::VC_MAGENTA_ON_WHITE)));
|
||||
}
|
||||
|
||||
bool toggle_view(textview_curses *toggle_tc)
|
||||
|
@ -57,9 +57,9 @@ public:
|
||||
: filename_wire(*this, &top_status_source::update_filename)
|
||||
{
|
||||
this->tss_fields[TSF_TIME].set_width(24);
|
||||
this->tss_fields[TSF_VIEW_NAME].set_width(7);
|
||||
this->tss_fields[TSF_VIEW_NAME].set_width(8);
|
||||
this->tss_fields[TSF_VIEW_NAME].right_justify(true);
|
||||
this->tss_fields[TSF_FORMAT].set_width(15);
|
||||
this->tss_fields[TSF_FORMAT].set_width(16);
|
||||
this->tss_fields[TSF_FORMAT].right_justify(true);
|
||||
this->tss_fields[TSF_FILENAME].set_min_width(35); /* XXX */
|
||||
this->tss_fields[TSF_FILENAME].set_share(1);
|
||||
@ -104,22 +104,22 @@ public:
|
||||
iter = sa[lr].find("file");
|
||||
if (iter != sa[lr].end()) {
|
||||
logfile *lf = (logfile *)iter->second.sa_ptr;
|
||||
struct line_range lr = { 0, 1 };
|
||||
struct line_range lr = { 0, 2};
|
||||
|
||||
if (lf->get_format()) {
|
||||
sf_format.set_value("< % 13s",
|
||||
sf_format.set_value(":: % 13s",
|
||||
lf->get_format()->get_name().c_str());
|
||||
}
|
||||
else if (!lf->get_filename().empty()) {
|
||||
sf_format.set_value("< % 13s", "unknown");
|
||||
sf_format.set_value(":: % 13s", "unknown");
|
||||
}
|
||||
else{
|
||||
sf_format.clear();
|
||||
}
|
||||
|
||||
sf_format.get_value().get_attrs()[lr].insert(
|
||||
make_string_attr("style", A_BOLD|COLOR_PAIR(
|
||||
view_colors::VC_GREEN_ON_WHITE)));
|
||||
make_string_attr("style", COLOR_PAIR(
|
||||
view_colors::VC_MAGENTA_ON_WHITE)));
|
||||
sf_filename.set_value(lf->get_filename());
|
||||
}
|
||||
else {
|
||||
|
Loading…
Reference in New Issue
Block a user