mirror of
https://github.com/tmux/tmux.git
synced 2026-07-22 08:51:17 +00:00
Convert display-panes away from an overlay and into a mode. This is
another step on the road of getting rid of overlays altogether (they are full of special cases; popups and menus are to go also eventually). We lose some of the styling of borders but gain the ability to run display-panes in another pane (perhaps not hugely useful but one never knows). The -b flag goes away as no longer useful.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
/* $OpenBSD: cmd-queue.c,v 1.120 2026/07/10 13:38:45 nicm Exp $ */
|
||||
/* $OpenBSD: cmd-queue.c,v 1.121 2026/07/14 17:17:17 nicm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2013 Nicholas Marriott <nicholas.marriott@gmail.com>
|
||||
@@ -148,6 +148,13 @@ cmdq_get_name(struct cmdq_item *item)
|
||||
return (item->name);
|
||||
}
|
||||
|
||||
/* Get item command. */
|
||||
struct cmd *
|
||||
cmdq_get_cmd(struct cmdq_item *item)
|
||||
{
|
||||
return (item->cmd);
|
||||
}
|
||||
|
||||
/* Get item client. */
|
||||
struct client *
|
||||
cmdq_get_client(struct cmdq_item *item)
|
||||
|
||||
Reference in New Issue
Block a user