Add pane_current_command format.

This commit is contained in:
Nicholas Marriott
2013-02-22 16:25:21 +00:00
parent 7d3c1016ce
commit 1db4ec6e63
2 changed files with 4 additions and 0 deletions

View File

@@ -377,6 +377,7 @@ format_window_pane(struct format_tree *ft, struct window_pane *wp)
u_int i;
u_int idx;
const char *cwd;
const char *cmd;
size = 0;
for (i = 0; i < gd->hsize; i++) {
@@ -410,6 +411,8 @@ format_window_pane(struct format_tree *ft, struct window_pane *wp)
format_add(ft, "pane_start_path", "%s", wp->cwd);
if ((cwd = osdep_get_cwd(wp->fd)) != NULL)
format_add(ft, "pane_current_path", "%s", cwd);
if ((cmd = osdep_get_name(wp->fd, wp->tty)) != NULL)
format_add(ft, "pane_current_command", "%s", cmd);
format_add(ft, "cursor_x", "%d", wp->base.cx);
format_add(ft, "cursor_y", "%d", wp->base.cy);