-/* $OpenBSD: mode-tree.c,v 1.69 2024/08/21 04:17:09 nicm Exp $ */
+/* $OpenBSD: mode-tree.c,v 1.70 2024/10/01 10:10:29 nicm Exp $ */
/*
* Copyright (c) 2017 Nicholas Marriott <nicholas.marriott@gmail.com>
MODE_TREE_SEARCH_BACKWARD
};
+enum mode_tree_preview {
+ MODE_TREE_PREVIEW_OFF,
+ MODE_TREE_PREVIEW_NORMAL,
+ MODE_TREE_PREVIEW_BIG
+};
+
struct mode_tree_item;
TAILQ_HEAD(mode_tree_list, mode_tree_item);
mtd->sort_list = sort_list;
mtd->sort_size = sort_size;
- mtd->preview = !args_has(args, 'N');
+ if (args_has(args, 'N') > 1)
+ mtd->preview = MODE_TREE_PREVIEW_BIG;
+ else if (args_has(args, 'N'))
+ mtd->preview = MODE_TREE_PREVIEW_OFF;
+ else
+ mtd->preview = MODE_TREE_PREVIEW_NORMAL;
sort = args_get(args, 'O');
if (sort != NULL) {
if (height < screen_size_y(s))
mtd->height = screen_size_y(s) - height;
} else {
- mtd->height = (screen_size_y(s) / 3) * 2;
- if (mtd->height > mtd->line_size)
- mtd->height = screen_size_y(s) / 2;
+ if (mtd->preview == MODE_TREE_PREVIEW_NORMAL) {
+ mtd->height = (screen_size_y(s) / 3) * 2;
+ if (mtd->height > mtd->line_size)
+ mtd->height = screen_size_y(s) / 2;
+ if (mtd->height < 10)
+ mtd->height = screen_size_y(s);
+ } else if (mtd->preview == MODE_TREE_PREVIEW_BIG) {
+ mtd->height = screen_size_y(s) / 4;
+ if (mtd->height > mtd->line_size)
+ mtd->height = mtd->line_size;
+ if (mtd->height < 2)
+ mtd->height = 2;
+ } else
+ mtd->height = screen_size_y(s);
}
- if (mtd->height < 10)
- mtd->height = screen_size_y(s);
if (screen_size_y(s) - mtd->height < 2)
mtd->height = screen_size_y(s);
}
mode_tree_set_current(mtd, tag);
mtd->width = screen_size_x(s);
- if (mtd->preview)
+ if (mtd->preview != MODE_TREE_PREVIEW_OFF)
mode_tree_set_height(mtd);
else
mtd->height = screen_size_y(s);
}
}
+ if (mtd->preview == MODE_TREE_PREVIEW_OFF)
+ goto done;
+
sy = screen_size_y(s);
- if (!mtd->preview || sy <= 4 || h <= 4 || sy - h <= 4 || w <= 4)
+ if (sy <= 4 || h < 2 || sy - h <= 4 || w <= 4)
goto done;
line = &mtd->line_list[mtd->current];
if (x > mtd->width || y > mtd->height) {
if (*key == KEYC_MOUSEDOWN3_PANE)
mode_tree_display_menu(mtd, c, x, y, 1);
- if (!mtd->preview)
+ if (mtd->preview == MODE_TREE_PREVIEW_OFF)
*key = KEYC_NONE;
return (0);
}
PROMPT_NOFORMAT, PROMPT_TYPE_SEARCH);
break;
case 'v':
- mtd->preview = !mtd->preview;
+ switch (mtd->preview) {
+ case MODE_TREE_PREVIEW_OFF:
+ mtd->preview = MODE_TREE_PREVIEW_BIG;
+ break;
+ case MODE_TREE_PREVIEW_NORMAL:
+ mtd->preview = MODE_TREE_PREVIEW_OFF;
+ break;
+ case MODE_TREE_PREVIEW_BIG:
+ mtd->preview = MODE_TREE_PREVIEW_NORMAL;
+ break;
+ }
mode_tree_build(mtd);
- if (mtd->preview)
+ if (mtd->preview != MODE_TREE_PREVIEW_OFF)
mode_tree_check_selected(mtd);
break;
}
-.\" $OpenBSD: tmux.1,v 1.957 2024/09/16 20:46:58 nicm Exp $
+.\" $OpenBSD: tmux.1,v 1.958 2024/10/01 10:10:29 nicm Exp $
.\"
.\" Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
.\"
.\" IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
.\" OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
-.Dd $Mdocdate: September 16 2024 $
+.Dd $Mdocdate: October 1 2024 $
.Dt TMUX 1
.Os
.Sh NAME
.Fl K
a format for each shortcut key; both are evaluated once for each line.
.Fl N
-starts without the preview.
+starts without the preview or if given twice with the larger preview.
This command works only if at least one client is attached.
.It Xo
.Ic choose-tree
.Fl K
a format for each shortcut key; both are evaluated once for each line.
.Fl N
-starts without the preview.
+starts without the preview or if given twice with the larger preview.
.Fl G
includes all sessions in any session groups in the tree rather than only the
first.