=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/options-table.c,v retrieving revision 1.128 retrieving revision 1.129 diff -c -r1.128 -r1.129 *** src/usr.bin/tmux/options-table.c 2020/05/16 16:10:28 1.128 --- src/usr.bin/tmux/options-table.c 2020/05/16 16:26:34 1.129 *************** *** 1,4 **** ! /* $OpenBSD: options-table.c,v 1.128 2020/05/16 16:10:28 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: options-table.c,v 1.129 2020/05/16 16:26:34 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott *************** *** 60,65 **** --- 60,68 ---- static const char *options_table_pane_status_list[] = { "off", "top", "bottom", NULL }; + static const char *options_table_pane_lines_list[] = { + "single", "double", "heavy", "simple", "number", NULL + }; static const char *options_table_set_clipboard_list[] = { "off", "external", "on", NULL }; *************** *** 902,907 **** --- 905,918 ---- .default_str = "#{?pane_active,#[reverse],}#{pane_index}#[default] " "\"#{pane_title}\"", .text = "Format of text in the pane status lines." + }, + + { .name = "pane-border-lines", + .type = OPTIONS_TABLE_CHOICE, + .scope = OPTIONS_TABLE_WINDOW, + .choices = options_table_pane_lines_list, + .default_num = PANE_LINES_SINGLE, + .text = "Type of the pane type lines." }, { .name = "pane-border-status",